* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

body {
  background-color: #faebeb;
  color: #01012b;
  text-align: center;
  padding: 0px;
}

nav {
  background-color: #ed7992;
  padding: 30px 0;
  margin-bottom: 0px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffd700;
}

h1 {
  font-family: 'Righteous', cursive;
  font-size: 2.5rem;
  margin: 0%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #ffffff;
  background-color: #4f64ff;
}

h2 {
  padding-top: 1rem;
}

h3 {
  font-size: 1rem
}

footer {
  padding-top: 2%;
  padding-bottom: 10%;
  margin-right: 20%;
  margin-left: 20%;
  font-size: 1rem
}

.hero {
  min-height: 100vh;
  background-image: url('background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

#dropBox {
  width: 100%;
  max-width: 400px;
  height: 200px;
  border: 2px dashed #ed7992;
  background-color: #f8dada;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  color: #ed7992;
  margin: 20px auto;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s ease;
}

#dropBox:hover {
  border-color: #ffd700;
  background-color: #ffffff;
}

input[type="text"] {
  width: 100%;
  max-width: 350px;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #ed7992;
  border-radius: 6px;
  background-color: #f8dada;
  color: #01012b;
  transition: 0.3s;
  margin: 10px 0;
}

input[type="text"]:focus {
  border-color: #ffd700;
  outline: none;
}

button {
  background: #4f64ff;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

select {
  width: 100%;
  max-width: 350px;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #ed7992;
  border-radius: 6px;
  background-color: #f8dada;
  color: #01012b;
  transition: 0.3s;
  margin: 10px 0;
}
button:hover {
  transform: scale(1.05);
  background: #ffd700;
  color: #01012b;
}
