@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  min-height: 100vh;
  background-image: url("bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

nav {
  width: 100%;
  height: 10vh;
  position: sticky;
}

.nav-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.logo {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.links {
  display: flex;
  gap: 30px;
}

.links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: 0.3s;
}

.links a:hover {
  color: rgb(211, 3, 3);
  border-bottom: 2px solid rgb(211, 3, 3);
}

.hamburg,
.cancel {
  display: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.dropdown {
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateY(-500px);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.dropdown .links {
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: center;
}

section {
  width: 100%;
  min-height: 90vh;
}

.main-container {
  width: 100%;
  min-height: 90vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 30px;
}

.content {
  width: 40%;
  color: white;
}

.content h1 {
  font-size: 3rem;
}

.typewriter {
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0;
}

.typewriter span {
  color: rgb(211, 3, 3);
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 15px 0;
}

.content button {
  width: 200px;
  height: 50px;
  background: rgb(171, 0, 0);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.content button:hover {
  transform: scale(1.05);
  background: transparent;
  border: 2px solid rgb(211, 3, 3);
  box-shadow: 0 0 20px rgb(211, 3, 3);
}

.image {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 30px rgb(211, 3, 3);
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
