* {
  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: 520px) {
  .row {
    position: static !important;
    margin-right: 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;
}

h3 {
  font-family: Arial, Helvetica, sans-serif;

  font-weight: bold;
  color: black;
  margin-top: 10px;
  margin-bottom: 20px;
}

h4 {
  font-family: Arial, Helvetica, sans-serif;

  font-weight: lighter;
  color: black;
  margin-top: 10px;
  margin-bottom: 15px;
}

.list {
  margin-left: 25px;
  font-size: 12px;
}

.p3 {
  color: red;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

.p4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: bold;
}

.p5 {
  color: blue;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.p6 {
  color: blue;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.p0 {
  color: darkmagenta;
  font-family: Arial, Helvetica, sans-serif;
}

.p7 {
  color: blue;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.p8 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: green;
  font-weight: bold;
  margin-bottom: 15px;
}

table {
  color: black;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.row {
  position: absolute;
  right: 0;
  margin-right: 60px;
}
