* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding: 0;
  margin: 0;
}

:root {
  --text-head: #6b20b1;
  --light-background: #f3d4f3;
  --other: #ba69c8;
}

/* ~~~~~~~~~~~~~~~~ NAVBAR ~~~~~~~~~~~~~~~~~ */
nav {
  background-color: var(--light-background);
  display: flex;
  align-items: center;
  width: auto;
}

nav img {
  height: 120px;
}

.nav-link {
  text-decoration: none;
  font-size: 30px;
  justify-content: center;
  font-weight: 500;
  margin-left: 1000px;
}

.nav-link:hover {
  text-decoration: underline;
}

.main-head {
  text-align: center;
  padding: 20px;
  font-size: 40px;
  color: #4d1186;
}

.content {
  padding: 0 40px;
}

.content h4 {
  text-align: center;
  font-size: 20px;
  padding: 0 0 20px 0;
  font-weight: 400;
}

div {
  padding: 30px 0;
}

p {
  font-size: 16px;
  padding: 10px 0;
}

ul {
  padding: 10px 40px;
  list-style: square;
}

li {
  padding: 3px 0;
}

h2 {
  padding: 5px 0;
  font-weight: 400;
}

div h1 {
  color: #4d1186;
}

h5 {
  padding: 20px 0 10px 0;
  font-size: 18px;
  font-weight: 500;
}

a {
  color: #6b20b1;
}

@media (max-width: 768px) {
  nav {
    text-align: center;
    flex-direction: column;
  }
  ul {
    padding: 10px 20px;
  }
  .nav-link {
    height: 8vh;
    margin-left: 0;
  }
  .main-head {
    font-size: 30px;
  }
}
