@import url("https://fonts.googleapis.com/css2?family=Merriweather&display=swap");

:root {
  --p-color: #3e95ff;
  --s-color: #ffffff;
  --t-color: #000000;




  --background-item: #121826;
  --background-item-hover: #ffffff;
  --item-non-hover: #FEFEFE;
  --text-link: #C9CDD2;
  --text-link-accent: #DADBDE;
  --line-color: #222836;






  --text-color: #ffffff;
    --footer-bg: #000000;
    --footer-bottom-bg: #ffffff;
    --white: white;
    --link-color: #3e95ff;
    --link-hover: #3e95ff;
    --button-border: #3d689a;


    --background: transparent;
    --primary-color: #18A7FA;
    --secondary-color: #000000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  height: auto;
  width: 100%;
}

.twitch{
  height: 800px;
  width: 1000px;
}



.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Merriweather", serif;
  padding: 14px;

}
h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}
.carousel {
  height: auto;
  width: 100%;
  position: relative;
}
.carousel button {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  top: 50%;
}
#prev {
  left: 5px;
}
#next {
  right: 5px;
}
.carousel li {
  list-style: none;
}
.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.4s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.slide img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}


























































































.btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 26px 30px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: var(--t-color);
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 0 0 2px var(--p-color);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn svg {
  position: absolute;
  width: 24px;
  fill: var(--p-color);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn .arr-1 {
  right: 18px;
}

.btn .arr-2 {
  left: -35%;
}

.btn .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: var(--p-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn:hover {
  box-shadow: 0 0 0 12px transparent;
  color: var(--s-color);
  border-radius: 100px;
  border-color: #3e95ff ;
}

.btn .arr-1 {
  right: -35%;
}

.btn .arr-2 {
  left: 16px;
}

.btn .text {
  transform: translateX(12px);
}

.btn svg {
  fill: var(--s-color);
}

.btn:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px var(--p-color);
}

.btn:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
