@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.circles {
  height: 100vh;
  width: 100vw;
  position: absolute;
  display: grid;
  flex-direction: column;
  overflow: hidden;
  z-index: -10;
  left: 0;
  top: 0;
}
.circles .top {
  position: relative;
  animation: move-left 0.8s;
}
.circles .top .inner {
  position: relative;
  height: 25rem;
  width: 40rem;
  border: 3px solid #d2302c;
  border-radius: 50%;
  top: -200px;
  left: -32px;
}
.circles .top::before {
  content: "";
  position: absolute;
  height: 25rem;
  width: 40rem;
  background: #ec5e5a;
  border-radius: 50%;
  top: -190px;
  left: -150px;
  rotate: -20deg;
}
.circles .top::after {
  content: "";
  position: absolute;
  height: 20rem;
  width: 40rem;
  background: #d2302c;
  border-radius: 50%;
  top: -150px;
  left: -20px;
  rotate: -5deg;
}
.circles .bottom {
  position: relative;
  rotate: 180deg;
  animation: move-right 0.8s;
}
.circles .bottom .inner {
  position: relative;
  height: 25rem;
  width: 40rem;
  border: 3px solid #d2302c;
  border-radius: 50%;
  top: -200px;
  left: -32px;
}
.circles .bottom::before {
  content: "";
  position: absolute;
  height: 25rem;
  width: 40rem;
  background: #ec5e5a;
  border-radius: 50%;
  top: -190px;
  left: -150px;
  rotate: -20deg;
}
.circles .bottom::after {
  content: "";
  position: absolute;
  height: 20rem;
  width: 40rem;
  background: #d2302c;
  border-radius: 50%;
  top: -150px;
  left: -20px;
  rotate: -5deg;
}

.images {
  z-index: -9;
}
.images .img {
  width: 15rem;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.images .img img {
  width: 20rem;
  border-radius: 20px;
  border: 5px solid #d2302c;
}
.images .img:nth-child(1) {
  left: 20vw;
  top: 17vh;
  animation: move-down 1s ease alternate infinite;
  scale: 0.8;
}
.images .img:nth-child(2) {
  left: 10vw;
  bottom: 20vh;
  animation: move-up 1s ease alternate infinite;
}
.images .img:nth-child(3) {
  right: 25vw;
  bottom: 15vh;
  scale: 0.9;
  animation: move-up 1s ease alternate infinite;
}
.images .img:nth-child(4) {
  right: 10vw;
  top: 25vh;
  animation: move-down 1s ease alternate infinite;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  top: 1rem;
}
header .brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.5s ease;
  position: relative;
  top: 12rem;
}
header .brand img {
  width: 15rem;
  pointer-events: none;
}
header .brand span {
  color: #d2302c;
  position: absolute;
  bottom: -2px;
  font-weight: 500;
}

main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.5s ease;
  margin-top: 2rem;
}
main h1 {
  font-size: 3rem;
  color: #fff;
}
main h1 span {
  color: #d2302c;
}
main p {
  font-size: 2rem;
  width: 40rem;
  text-align: center;
  line-height: 38px;
}
main p span {
  color: #d2302c;
  font-weight: 600;
  font-size: 1.5rem;
}
main button {
  padding: 10px 20px;
  border: 2px solid #d2302c;
  border-radius: 5px;
  transition: 0.5s ease;
  cursor: pointer;
  background: #d2302c;
  color: #fff;
  margin-top: 2rem;
}
main button:hover {
  background: transparent;
  color: #d2302c;
}

footer {
  position: fixed;
  bottom: 2rem;
  left: 0;
  width: 100vw;
  padding: 0 2rem;
  animation: fade-in 1s ease;
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
}
footer span {
  color: #d2302c;
  font-weight: 700;
}
footer #owner {
  margin-right: 5rem;
}
footer #owner a {
  text-decoration: none;
}
footer #owner a span {
  color: #ffcb44;
}

@keyframes move-left {
  from {
    margin-left: -50px;
  }
  to {
    margin-left: 0;
  }
}
@keyframes move-right {
  from {
    margin-right: -40px;
  }
  to {
    margin-right: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ---------- Mobile ---------- */
@media (max-width: 480px) {
  html {
    overflow: hidden;
  }
  body {
    overflow: hidden;
  }
  .circles .top {
    top: -15vh;
  }
  .circles .bottom {
    position: relative;
    rotate: 180deg;
    right: 10rem;
    top: -5vh;
  }
  .images .img img {
    display: none;
  }
  header .brand {
    top: 9rem;
  }
  main {
    position: relative;
    text-align: center;
    top: 1rem;
  }
  main h1 {
    font-size: 2.5rem;
    width: 20rem;
  }
  main p {
    font-size: 1rem;
    text-align: center;
  }
  main p span {
    font-size: 1rem;
  }
  footer {
    bottom: 1rem;
    left: 0;
    scale: 0.7;
    width: 100vw;
    padding: 0 2rem;
    animation: fade-in 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
  }
  footer span {
    color: #000;
    font-weight: 700;
  }
  footer #owner {
    margin-right: 0;
  }
}/*# sourceMappingURL=main.css.map */