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

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: 15px;
  margin: 10px 30px;
  border-radius: 3px;
  border: 1px solid #ccc;
}

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

ol,
table {
  margin-left: 35px;
}

.list1 {
  font-size: 10px;
  color: darkgreen;
  font-weight: bold;
  margin-bottom: 10px;
}

.list2 {
  font-size: 10px;
  color: purple;
  font-weight: lighter;
  margin-bottom: 10px;
}

.list3 {
  color: blue;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}

.list4,
table {
  color: black;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

p {
  font-size: 12px;
  color: red;
  margin-bottom: 10px;
}
