@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 450px;
}

.header {
  position: relative;
  min-height: 320px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.banner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

@media (min-width: 650px) {
  .header {
    min-width: 350px;
  }
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
}

img {
  border: none;
  outline: none;
}

a {
  text-decoration: none;
}

.text-white {
  color: white;
}

.mx-auto {
  margin: auto;
  display: block;
}

.mt-5 {
  margin-top: 14px;
}

.p-5 {
  padding: 20px;
}

.text-center {
  text-align: center;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 25px;
  background: #2a2a2a;
}

.title {
  position: relative;
  background: white;
  width: fit-content;
  margin: auto;
  text-wrap: nowrap;
  text-align: center;
}

.title::after {
  position: absolute;
  content: "";
  left: -80%;
  top: 50%;
  background: black;
  height: 1px;
  z-index: 2;
  width: 70%;
}
.title::before {
  position: absolute;
  content: "";
  right: -80%;
  top: 50%;
  background: black;
  height: 1px;
  z-index: 2;
  width: 70%;
}
.social {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

.logo {
  position: relative;
  animation: logo 1.5s ease-in-out;
}

@keyframes logo {
  0% {
    position: absolute;
    transform: translate(50%, 50%);
    left: 50%;
    top: 50%;
    scale: 0;
  }
  50% {
    position: absolute;
    transform: translate(-50%, 100%);
    scale: 1;
    left: 50%;
    top: 50%;
  }
  100% {
    position: absolute;
    transform: translate(-50%, -60%);
    scale: 1;
    left: 50%;
    top: 50%;
  }
}

.opacity {
  animation: opacity 1.7s ease-in-out;
}

@keyframes opacity {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  80% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
