* {
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  /* Tablet styles */
}

@media (max-width: 480px) {
  /* Phone styles */
}

body {
  color: wheat;
  background-image: url(/img/pc\ and\ phone.jpg);
  background-attachment: fixed;
  background-size: 100%;
  text-align: center;
}

.home header {
  background-color: rgb(66, 16, 112);
  justify-content: space-between;
  display: flex;
  font-size: 35px;
  margin-bottom: 40px;
}

h1 {
  color: white;
}

nav ul {
  display: flex;
  gap: 30px;
  font-size: 25px;
  list-style: none;
  margin-top: 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: white;
  color: rgb(66, 16, 112);
  transition: 0.3s;
  padding: 5px 10px;
  border-radius: 10px;
}

h2 {
  color: white;
  font-size: 50px;
}

.info {
  margin-top: 20px;
  text-align: center;
  font-size: 40px;
}

.info p {
  margin-top: 40px;
}

.info p span {
  color: white;
  font-family: "Times New Roman", Times, serif;
  font-size: larger;
  font-style: italic;
}

.heading {
  margin-top: 40px;
  background-color: rgb(66, 16, 112);
  border-radius: 20px;
  text-align: center;
  font-size: 35px;
}

.form {
  margin: auto;
  margin-top: 100px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  color: white;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 20px 40px;
}

.form .input-box {
  position: relative;
  justify-content: center;
  width: 100%;
  height: 50px;

  margin: 40px 0;
}

.input-box input {
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgb(255, 255, 255, 0.2);
  border-radius: 40px;
  font-size: 20px;
  color: white;
  padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form h1 {
  font-size: 40px;
  text-align: center;
}

select {
  background: rgb(66, 16, 112);
  border: none;
}

#message {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid white;
  background: transparent;
  color: white;
  resize: none;
}

.form .btn {
  width: 100%;
  height: 45px;
  background-color: white;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: rgb(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 20px;
  color: rgb(15, 13, 13);
  font-weight: 600;
}

.btn:hover {
  background-color: rgb(66, 16, 112);
  color: white;
  transition: 0.3s;
}

footer {
  background-color: rgb(66, 16, 112);
}
