* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f5f8ff;
}

.wrapper {
  width: 95%;
  margin: 0 auto;
}

h1, h3 {
  color: #2c8eec;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  padding: 25px 30px;
  margin-left: 100px;
  margin-top: 80px;
}

h3 {
  color: #000000;
}

nav {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1em 2em;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  width: 90%;
  max-width: 1000px;
  transition: all 0.3s ease;
}

nav .nav-links {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 0 auto;
}

nav .nav-links li {
  flex: 1;
  text-align: center;
}

nav .nav-links li a {
  display: block;
  padding: 0.5em;
}

nav:hover {
  background-color: rgba(255, 255, 255, 0.95);
}

#logo {
  font-size: 1.5em;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: #2c8eec;
  text-decoration: none;
  margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
  align-items: center;
  justify-content: center;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  text-transform: capitalize;
  color: #333;
  padding: 0.75em 1em;
  border-radius: 25px;
  font-family: 'Lato', sans-serif;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

.nav-links li a:hover {
  color: #2c8eec;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(44, 142, 236, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 25px;
}

.nav-links li a:hover::after {
  height: 100%;
}

.nav-links li a.active {
  color: #333;
}

.bg {
  position: absolute;
  height: 50vh;
  width: 100vw;
  background: white;
}

.wrapper {
  font-size: 1.2em;
  width: 25em;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background-color: white;
  border-radius: 0.5em;
  padding: 4em 2em;
  box-shadow: 0 1.25em 2.5em rgba(18, 0, 76, 0.15);
}

.container {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.fa-star {
  font-size: 1.5em;
  color: #00a1f8e3;
}

.number {
  display: block;
  text-align: center;
}

#submit {
  display: block;
  position: relative;
  background: #00a1f8e3;
  border: none;
  padding: 0.8em 2em;
  color: white;
  font-size: 1.2em;
  border-radius: 2em;
  margin: 1em auto 0 auto;
  cursor: pointer;
}

#submit:disabled {
  cursor: not-allowed;
}

#message {
  text-align: center;
  margin-bottom: 2em;
}

#submit-section {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: 0;
  left: 0;
  place-items: center;
  border-radius: 0.5em;
}

.hide {
  display: none;
}

.show {
  display: grid;
}
