/* -------------- GENERALE -------------- */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

:root {
  --twitch-color: #a970ff;
  --instagram-color: #a970ff;
  --white-color: #efeee5;
  --black-color: #274546;
  --verified-color: #5482ff;
}

.colored-text {
  color: var(--primary-color);
}

.bolded-text {
  font-weight: 600;
}

.caps {
  text-transform: uppercase;
}

/* -------------- LAPTOP SIZE-------------- */

/* -------------- PHONE SIZE-------------- */

@media only screen and (max-width: 1100px) {
  body {
    background-color: var(--black-color);
    color: var(--white-color);
    width: 100vw;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .banner-container {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .container {
    width: auto;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
  }
  .logo-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border-radius: 45px;
    border: 3px solid var(--verified-color);
    background: var(--black-color);
  }

  .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
  }

  .circle i {
    font-size: 40px;
    color: var(--verified-color);
    background-color: var(--black-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
  }
  .link-container {
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .link-box {
    margin-top: 125px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .box1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    animation: shake 2s infinite;
  }
  @keyframes shake {
    10% {
      transform: scale(1.05) rotate(5deg);
    }
    20% {
      transform: scale(1.05) rotate(-5deg);
    }
    30% {
      transform: scale(1.05) rotate(5deg);
    }
    40% {
      transform: none;
    }
  }
  .box2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .link-box a {
    width: 70%;
    height: 70px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 10px;
    border: 2px solid var(--white-color);
    color: var(--white-color);
  }
  .link-box i {
    font-size: 35px;
  }
  .fa-twitch {
    color: var(--twitch-color);
  }
  .fa-instagram {
    background: linear-gradient(
      45deg,
      #ffde85 0%,
      #f7792a 30%,
      #f7504f 40%,
      #d82b81 60%,
      #d82b81 75%,
      #9536c2 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .link-box p {
    font-size: 25px;
  }
  footer {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer p {
    font-size: 15px;
    color: var(--white-color);
  }
}
