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

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

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

.linke: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;
}

.linke: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;
}

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

.logo {
  font-size: 15px;
  color: rgb(231, 185, 231);
  text-decoration: none;
}

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

h2 {
  font-weight: lighter;
  margin-bottom: 15px;
  color: purple;
}

P {
  margin-bottom: 8px;
  color: black;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  margin-left: 10px;
  line-height: 1.5;
}

thead {
  font-size: 14px;
}

th {
  text-align: left;
}

tbody {
  font-size: 12px;
}

a {
  color: darkmagenta;
  text-decoration: underline;
  cursor: pointer;
  font-size: 10px;
  box-sizing: border-box;
}
