* {
  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%;
}

.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;
  margin-top: 20px;
  gap: 40px;
  font-size: 25px;
  list-style: none;
}

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;
}

.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-weight: bolder;
  font-size: larger;
}

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