a{
    color: black;
}
body{
    background-color: #CBA4DE;
    font-family: "Merriweather Sans", sans-serif;
}
header{
    font-family: "Oswald";
    text-align: center;
    display: block;
    background-color: #CFFFED;
    color: black;
    width: 100%;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    margin-bottom: 1.25em;
}
article{
    padding-bottom: 0.5em;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 1em;
    margin-top: 1em;
    background-color: white;  
}
article time{
    padding-left:5px;
}
article p{
    padding-left: 10px;
    padding-right: 10px;
    line-height: 2em;
}
nav{
    font-family: "Oswald";
    text-align: center;
}
footer{
    background-color: #CFFFED;
    font-family: "Oswald";
    padding-left: 2%;
    padding-right: 2%;   
}
nav a{
    text-decoration: none;
    display: block;
    background-color: #CFFFED;
    color: black;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    border-radius: 5px;
    padding-bottom: 1em;
    padding-top: 1em;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
}
nav ul {
    list-style-type: none; 
    padding: 0;
}
nav ul li a {
    display: block;
    background-color: #CFFFED;
    color: black;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    border-radius: 5px;
    padding-bottom: 1em;
    padding-top: 1em;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;  
}
h2{
    font-family: "Merriweather", serif;
    text-align: center;
}
img{
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
}
footer{
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    align-items: center;
    padding: 1em 5%;  
}
@media only screen and (min-width: 600px) {
    #home main{
        width: 1044px;
        display: grid;
        margin: auto;
        grid-template-columns: 300px 300px 300px;
        gap: 72px;
    }
    #home nav ul{
        display: flex;
        flex-direction: row;
        padding: 0;
        justify-content: space-evenly;
    }
    #home nav ul li a {
        text-decoration: none;
        background-color: #CFFFED;
        display: block;
        color: black;
        font-size: 1.25em;
        font-weight: bold;
        line-height: 25px;
        text-align: center;
        border-radius: 5px;
        padding-bottom: 1em;
        padding-top: 1em;
        width: 245px;
        margin-top: 3em;
        margin-bottom: 3em;}
    #home article{
        width: 300px;
        max-height: auto;
    }
    #home article time{
        padding-left: 5px;
    }
    #home article p{
        padding-left: 10px;
    }
    #internal nav{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 50px;
        padding: 0;
    }
    #internal nav a {
        background-color: #CFFFED;
        display: block;
        color: black;
        font-size: 1.25em;
        font-weight: bold;
        line-height: 25px;
        text-align: center;
        border-radius: 5px;
        padding-bottom: 1em;
        padding-top: 1em;
        width: 245px;
        margin-top: 3em;
        margin-bottom: 3em;   
    }
    #internal article{
        margin: auto;
        max-width: 1000px;
        max-height: auto;
    }
    #internal article time{
        padding-left: 15px;
    }
    #internal article p{
        padding-left: 30px;
        padding-right: 30px;
    }
}