* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    background-color: white;
    font-family: Georgia, serif;
    color: black;
}

.main-nav{
    background-color: white;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30px;
    color: black;
    letter-spacing: -1px;
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
    height: 50px;           /* full viewport height */
    padding-top: 30px;
}

.main-title{
    background-color: white;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 25px;
    color: black;
    letter-spacing: -1px;
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;
    height: 40px;
    padding-top: 10px;   
}       

.main-text{
    background-color: white;
    text-align: justify;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    color: black;
    letter-spacing: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 200px; */
    width: 800px;
    padding-top: 30px;
    margin: 0 auto;
}

.divider{
    background-color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 800px;
    margin: 0 auto;
}

a {
  color: black;
  text-decoration: none;
  transition: font-size 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  font-size: 1.2em;
  text-shadow: 0 0 8px rgba(170, 170, 170, 0.8),
               0 0 2px rgba(170, 170, 170, 0.8);
}
