@import url("https://fonts.googleapis.com/css2?family=Anton&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", serif;
  scroll-behavior: smooth;
}
.container {
  width: 80%;
  margin: 0 auto;
}
a {
  text-decoration: none;
}
header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
}
header nav {
  width: 80%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
header nav .logo {
  color: white;
  font-size: 40px;
  letter-spacing: 2px;
  font-family: "Anton", serif;
}
header .nav-links {
  display: flex;
  gap: 40px;
}
header .nav-links a {
  color: #d4d4d4;
  font-size: 20px;
  font-family: sans-serif;
  transition: 0.3s;
}
header .nav-links a:hover {
  color: white;
}
.hero {
  position: relative;
  background: #825dd2;
  height: 100vh;
}
.hero::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, #bd9fff, transparent, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero .container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* #cans,
#leaf,
#blackberry1,
#blackberry2,
#blackberry3,
#coco {
} */
#cans {
  position: absolute;
  width: 35%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
#leaf {
  position: absolute;
  top: 60%;
  left: 10%;
  width: 12%;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  z-index: 10;
}
#blackberry1 {
  position: absolute;
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 11vw;
  /* transform: rotate(90deg); */
}
#blackberry2 {
  position: absolute;
  top: 65%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 15vw;
}
#blackberry3 {
  position: absolute;
  top: 35%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 6vw;
  /* z-index: 10; */
}
#coco {
  position: absolute;
  width: 20%;
  top: 10%;
  right: 0;
}
.hero h1 {
  font-size: 28vw;
  color: white;
  font-weight: 900;
  letter-spacing: 10px;
  font-family: "Anton", serif;
}
.about {
  padding: 100px;
  height: 100vh;
}
.about .text {
  width: 50%;
}
.about .text h2 {
  font-size: 3.5vw;
  color: #0d071c;
  text-transform: capitalize;
  position: relative;
  z-index: 20;
}

.about .text h2 span {
  color: #825dd2;
}
.about .text .boxs {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 30px 0 60px;
}
.about .text .boxs .box img {
  width: 25%;
  rotate: 60deg;
}
.about .text .boxs .box h4 {
  color: #0d071c;
  margin: 20px 0 10px;
  font-size: 1.1vw;
}
.about .text .boxs .box p {
  font-size: 0.9vw;
  color: #d4d4d4;
}
.about .text a {
  padding: 15px 45px;
  font-size: 18px;
  border: 1px solid #825dd2;
  background: #825dd2;
  color: white;
  transition: 0.3s;
  font-weight: bold;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.about .text a:hover {
  background: transparent;
  color: #0d071c;
}
.stand {
  height: 100vh;
  background: #825dd2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 130px;
}
.stand .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.stand img {
  width: 55%;
}
.stand h3 {
  position: absolute;
  top: 0%;
  font-size: 26vh;
  color: white;
  left: 50%;
  text-transform: uppercase;
  transform: translateX(-50%);
  font-family: "Anton", serif;
  letter-spacing: 7px;
}
.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer .container {
  position: relative;
  text-align: center;
  align-items: center;
}
.footer .container h3 {
  font-size: 55px;
  font-weight: bold;
  color: #825dd2;
  margin-bottom: 15px;
}
.footer .container a {
  padding: 10px 25px;
  font-size: 18px;
  border: 1px solid #825dd2;
  background: #825dd2;
  color: white;
  transition: 0.3s;
  font-weight: bold;
  border-radius: 30px;
  overflow: hidden;
}
.footer .container a:hover {
  background: transparent;
  color: #0d071c;
}
.footer .container p {
  padding-top: 25px;
  font-size: 13px;
  opacity: 0.8;
}
.footer .container p span {
  color: #825dd2;
  font-weight: bold;
}
