/* John Scott, 2024 */

body {
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
    background-color: #fce1c5;
}

nav {
    background-color: #006666;
    padding: 10px 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.profile-picture {
    max-width: 200px;
    border-radius: 50%;
    border: 5px solid #544263;
    margin: 20px auto;
    display: block;
}

h1 {
    color: #006666;
    margin-bottom: 10px;
    text-align: center;
}

h2, h3 {
    margin-left: 10%;
    margin-right: 10%;
    color: #006666;
    margin-bottom: 0px; /* figure out what's causing this or if it's built in */
}

h2 {
    font-size:18px;
}

h3 {
    font-size:16px;
}

h1 a,h2 a,h3 a, p a, span a {
    font-size: inherit;
    color: inherit;
    text-decoration: inherit;
    border-bottom: 1px dotted #000;
    text-decoration: none;   
}
h1 a:hover,h2 a:hover,h3 a:hover, p a:hover, span a:hover  {
    text-decoration: none;
}

p {
    font-size: 16px;
    color: #544263;
    text-align: center;
}


span {
    color: #544263;
    display: block;
    font-size: 12px;
    margin-left: 10%;
    margin-right: 10%;
}

a {
    color: #544263;
    text-decoration: none;
    font-size: 14px;
}

a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    span {
        font-size: 18px;
    }
    a {
        font-size: 18px;
    }
    nav ul li a {
        font-size: 18px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 18px;
    }
    p {
        margin-left: 5%;
        margin-right: 5%;
        font-size: 24px;
    }
}
