* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .menu-icon {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .link {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links2 {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  main {
    margin: 0 !important;
  }
}

@media (max-width: 530px) {
  label {
    font-size: 8px !important;
  }

  input {
    width: 35% !important;
  }

  #email {
    margin-left: 118px !important;
  }
}

body {
  min-height: 100vh;
  background-color: whitesmoke;
}

header {
  background-color: purple;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 18px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 45%;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: rgb(231, 185, 231);
  font-size: 12px;
  box-sizing: border-box;
}

a:focus {
  background-color: darkmagenta;
  border-radius: 3px;
  color: white;
  transform: scale(1.05);
  padding: 5px;
  transition: background-color 0.2s ease, color 0.5s ease;
}

a:hover {
  background-color: darkmagenta;
  transform: scale(1.05);
  border-radius: 5px;
  color: white;
  padding: 4px;
  transition: background-color 0.2s ease, color 0.5s ease;
}

a:focus-visible {
  outline: 2px solid white;
}

.logo {
  font-size: 15px;
}

.menu-icon {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background-color: purple;
  height: 15px;
}

.close-icon {
  list-style: none;
  display: flex;
  background-color: purple;
  align-items: center;

  height: 20px;
}

.nav-links2 {
  position: fixed;
  right: 0;
  padding-right: 40px;
  list-style: none;
  width: 20%;
  border: 0;
  background-color: purple;
  line-height: 7vh;
  padding-left: 10px;
  display: none;
}

main {
  background-color: #fdfff5;
  display: block;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 10px 30px;
  border-radius: 3px;
  border: 1px solid #ccc;
}

h1 {
  font-weight: lighter;
  font-size: 25px;
  color: black;
  margin-bottom: 15px;
}

.ordered-list,
.unordered-list {
  font-size: 11px;
  margin-left: 30px;
  margin-bottom: 15px;
  line-height: 15px;
}

span {
  display: block;
}

h3 {
  font-size: 12px;
  margin-bottom: 10px;
  color: black;
}

p,
h5 {
  font-size: 11px;
  margin-bottom: 10px;
}

.para {
  font-weight: bold;
  color: black;
}

h4 {
  font-weight: lighter;
  margin-bottom: 10px;
  color: black;
}

.para2 {
  margin-bottom: 0;
  line-height: 15px;
}

label {
  font-size: 10px;
  margin-top: 10px;
  color: black;
}

input {
  margin-top: 10px;
  width: 50%;
  padding: 3px;
  border-radius: 4px;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  background-color: #fdfff5;
  color: #333;
  border: 1px solid #ccc;
}

#email {
  margin-left: 148px;
}

button {
  background-color: #1e90ff;
  color: white;
  padding: 2px;
  font-size: 8px;
  width: 75px;
  height: 22px;
  border-radius: 3px;
  border: 1px solid #1e90ff;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: blue;
}
