@font-face {
    font-family: 'Lato';
    src: url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
    font-display: swap;
}
a:link {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.button-container {
    margin-top: 2vh;
}
.button {
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: var(--text-color); 
    font-size: 20px; 
    text-align: left;
    cursor: pointer;
    line-height: 1; 
    text-decoration: none;
}
.button svg {
    width: 1em;
    height: auto;
    fill: currentColor;
    margin: 0 0 -3px -10px;
}
.research-entry {
    padding: 2vh 0 3vh;
}
.footer {
    margin-top: 100px;
    text-align: center;
}
#footer-text {
    font-size: 15px;
}

@media (max-width: 430px) {
    body {
        padding: 0 20px;
    }
    h2 { /* Sections */
        font-size: 25px;
        padding: 4vh 0 1vh;
    }
    h3 { /* Research Entries */
        font-size: 20px;
        padding-top: 0.5vh;
    }

    footer {
        margin-top: 40px;
    }
}

@media (max-width: 380px){
    body {
        padding: 0 15px;
    }
    h2, h4 { /* Sections & Grad Label */
        font-size: 20px;
    }
    h3 { /* Courses */
        font-size: 25px;
    }
    p { /* Body */
        font-size: 18px;
    }
    #footer-text {
        font-size: 10px;
    }
}


