@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;700&display=swap");

:root {
  --primary-color: #e4c77c;
  --secondary-color: #a70319;
  --success-color: #258616;
  --warning-color: #000000;
  --danger-color: #3ddc84;
  --light-color: #ffffff;
  --background-color: #0f0f0f;
}

html,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  background: var(--background-color);
  background-size: cover;
  background-position: center;
  height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--light-color);
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}

a {
  text-decoration: none;
  color: var(--light-color);
  transition: all 0.4s ease;
  font-size: 1.6rem;
}

img {
  width: 100%;
}

p {
  color: var(--light-color);
  margin: 0;
  padding: 0;
}

.btn {
  border: none;
  color: var(--light-color);
  padding: 0.8rem;
  border-radius: 5px;
  margin-right: 0.5rem;
  transition: all 0.5s ease;
  font-size: 1.6rem;
  font-weight: 500;
}

.btn-full {
  width: 100%;
  height: 4rem;
  border: none;
  color: var(--light-color);
  padding: 0.8rem;
  border-radius: 5px;
  transition: all 0.5s ease;
  font-size: 1.6rem;
  font-weight: 500;
}

.btn:hover {
  transform: translateY(-3px);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  filter: drop-shadow(0px 4px 5px var(--primary-color));
}

.btn-success {
  background-color: var(--success-color);
  filter: drop-shadow(0px 4px 5px var(--success-color));
}

.btn-danger {
  background-color: var(--danger-color);
  filter: drop-shadow(0px 4px 5px var(--danger-color));
}

.btn-warning {
  background-color: var(--warning-color);
  filter: drop-shadow(0px 4px 5px var(--warning-color));
}

.logo {
  width: 150px;
}

.content {
  width: calc(100% - 60px);
  max-width: 1200px;
  display: flex;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 1rem 0rem;
}

.text {
  margin-bottom: 1rem;
}

.l-content h1 {
  font-size: 3rem;
}

.r-content img {
  width: 90%;
  z-index: 99;
}

.container {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lines {
  width: 100%;
  height: 45px;
  position: relative;
}

.lines::after,
.lines::before {
  content: "";
  position: absolute;
  margin: auto;
  height: 2px;
  background: var(--primary-color);
  width: 45%;
  top: 45%;
}

.lines::after {
  left: 0;
}

.lines::before {
  right: 0;
}

.follow {
  width: 40px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 5rem;
  color: var(--primary-color);
}

.social-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.social-content h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.social-media img {
  width: 32px;
  margin: 0 0.8rem;
}

.r-content {
  position: relative;
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blob:nth-child(2) {
  filter: blur(50px);
}

.bubbles-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bubbles {
  position: relative;
  display: flex;
}

.bubbles span {
  position: relative;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  margin: 0 4px;
  border-radius: 50%;
  box-shadow: 0 0 0 10px var(--primary-color), 0 0 50px var(--primary-color),
    0 0 100px var(--primary-color);
  animation: animate 15s linear infinite;
  animation-duration: calc(120s / var(--i));
}

.bubbles span:nth-child(even) {
  background: var(--secondary-color);
  box-shadow: 0 0 0 10px var(--secondary-color), 0 0 50px var(--secondary-color),
    0 0 100px var(--secondary-color);
}

@keyframes animate {
  0% {
    transform: translateY(100vh) scale(0);
  }
  100% {
    transform: translateY(-10vh) scale(1);
  }
}

.img-banner {
  -webkit-animation-name: banner3Shake;
  animation-name: banner3Shake;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 2deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, -2deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@media (max-width: 768px) {
  header {
    margin-bottom: 4rem;
  }

  .content {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    margin-bottom: 1rem;
  }

  .l-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .l-content h1 {
    font-size: 1.9rem;
  }

  .follow {
    display: flex;
    width: 20px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 4rem;
    color: var(--primary-color);
    align-items: center;
  }

  .r-content {
    position: relative;
    max-width: 350px;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .blob {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 30%;
    left: 30%;
    transform: translate(-30%, -30%);
  }
}