@import url("https://fonts.googleapis.com/css?family=Luckiest+Guy&display=swap");

body {
  height: 96vh;
  background-color: rgb(255, 255, 255);
  margin: 0;
  padding: 0;
}

.wojak_logo {
    font-family: "Luckiest Guy", cursive;
    text-align: center;
    margin-top: 50px;
    h1 {
        margin: 0;
        font-size: 8em;
        padding: 0;
        color: white;
        text-shadow: 0 0.1em 20px black, 0.05em -0.03em 0 black, 0.05em 0.005em 0 black, 0em 0.08em 0 black, 0.05em 0.08em 0 black, 0px -0.03em 0 black, -0.03em -0.03em 0 black, -0.03em 0.08em 0 black, -0.03em 0 0 black;
    }
    h1 span {
        transform: scale(0.9);
        display: inline-block;
    }
    h1 span:first-child {
        -webkit-animation: bop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
        animation: bop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
    }
    h1 span:last-child {
        -webkit-animation: bopB 1s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
        animation: bopB 1s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
    }
}

@-webkit-keyframes bop {
  0% {
    transform: scale(0.9);
  }
  50%, 100% {
    transform: scale(1);
  }
}

@keyframes bop {
  0% {
    transform: scale(0.9);
  }
  50%, 100% {
    transform: scale(1);
  }
}
@-webkit-keyframes bopB {
  0% {
    transform: scale(0.9);
  }
  80%, 100% {
    transform: scale(1) rotateZ(-3deg);
  }
}
@keyframes bopB {
  0% {
    transform: scale(0.9);
  }
  80%, 100% {
    transform: scale(1) rotateZ(-3deg);
  }
}

.wojak_img {
    text-align: center;
}

.wojak_img img {
    width: 400px;
    margin-top: 50px;
}

.ca {
    text-align: center;
    margin-top: 80px;
    h2 {
        font-size: 30px;
        margin: 20px 0;
    }
}

.caa {
  width: 600px;
  height: 60px;
  border-radius: 10px;
  border: none;
  font-size: 20px;
  text-align: center;
  background-color: rgb(255, 255, 255);
  color: rgb(122, 122, 122);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  margin-right: 20px;
}

.cabt {
  width: 200px;
  height: 60px;
  border-radius: 10px;
  border: none;
  background-color: rgb(37, 37, 37);
  color: white;
  font-size: 20px;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.cabt:hover {
  background-color: rgb(105, 105, 105);
  cursor: pointer;
}

.wojak_sns {
  margin-top: 60px;
  text-align: center;
}

.wojak_sns img {
  transition: all 0.1s linear;
}

.wojak_sns img:hover {
  transform: scale(1.1);
}

.sns_i {
  width: 80px;
  border-radius: 20px;
  margin: 20px 50px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.open-btn {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: none;
  width: 300px;
  height: 60px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 30px;
  border: 1px solid gainsboro;
}

.open-btn:hover {
  background-color: #eeeeee;
}

@media (max-width: 980px) {
  .wojak_logo {
    h1 {
      font-size: 5em;
    }
  }
  .wojak_img {
    img {
      width: 300px;
    }
  }
  .caa {
    width: 450px;
    font-size: 18px;
  }
  .cabt {
    width: 150px;
    font-size: 18px;
  }
  .sns_i {
    width: 60px;
    border-radius: 15px;
    margin: 20px 30px;;
  }
  .open-btn {
    width: 200px;
  }
}

@media (max-width: 680px) {
  .wojak_logo {
    h1 {
      font-size: 4em;
    }
  }
  .wojak_img {
    img {
      width: 200px;
    }
  }
  .ca {
    h2 {
      font-size: 25px;
    }
  }
  .cabt {
    width: 150px;
    font-size: 18px;
    margin-top: 20px;
  }
  .sns_i {
    width: 50px;
    margin: 20px 20px;;
  }
  .open-btn {
    width: 150px;
  }
}

@media (max-width: 520px) {
  .wojak_logo {
    h1 {
      font-size: 3em;
    }
  }
  .wojak_img {
    img {
      width: 150px;
    }
  }
  .ca {
    h2 {
      font-size: 20px;
    }
  }
  .caa {
    width: 400px;
    height: 50px;
    font-size: 15px;
    margin-right: 0;
  }
  .cabt {
    width: 150px;
    height: 50px;
    font-size: 15px;
  }
  .sns_i {
    width: 40px;
    border-radius: 10px;
    margin: 20px 20px;;
  }
  .open-btn {
    width: 120px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .caa {
    width: 300px;
    font-size: 12px;
    margin-right: 0;
  }
  .cabt {
    width: 150px;
    font-size: 12px;
  }
  .sns_i {
    width: 40px;
    border-radius: 10px;
    margin: 20px 10px;;
  }
  .open-btn {
    width: 100px;
    font-size: 12px;
  }
}