* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Kaisei HarunoUmi', serif;
}
.dropbtn {
  background-color: #7d81e7;
  color: rgb(255, 255, 255);
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1000;
  background-color: #fcfcfc;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #4a8eb9;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #5059bc;
}
body {
  background-color: #283b7a;
  min-height: 100vh;
}
body::before{ 
  content: "";
  position: fixed;
  inset: 0; 
  background:rgba(0,0,0,0.4);
  z-index: 0;
}
.navbar{ 
  position: fixed;
  top: 20px;
  left: 20px; 
  z-index: 1000; 
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  color: #fff;
  min-height: 100vh; 
  display: flex;
  
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero-text h2 {
  font-size: 32px;
  color: #eae9e9;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 20px;
  color: #dcdcdc;
}

/* IMAGE */
.hero-image img {
  width: 350px;
  border-radius: 20px;
  background:rgba(150, 144, 144, 0.2);
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.2);
}

.page {
  transform-origin: center;
  overflow: visible;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 250px;
    margin-top: 40px;
  }

  .hero-text h1 {
    font-size: 42px;
  }
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}

.circle.one {
  width: 300px;
  height: 300px;
  background: #d9d9d9;
  top: -100px;
  left: 200px;
}
}