body {
    background-image: linear-gradient(#FFAB00, black);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    color: white;
    font-size: 36pt;
    text-shadow: 7px 5px black;
    font-family: 'Times New Roman', Times, serif;
    margin-top: .5px;
}

strong {
    font-style: italic;
    font-weight: bolder;
    animation: pulse 1s linear infinite;
}

@keyframes pulse{
    0% {color: black;}
    25% {color: #FFAB00;}
    50% {color: white;}
    75% {color: #FFAB00;}
    100% {color: black;}
}

#nav {
    justify-content: center;
    grid-area: nav;
}

#links {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 0;
    justify-content: space-evenly;
    align-items: center;
}

#title {
    grid-area: title;
}

#about {
    grid-area: about;
}

#footer {
    border-width: 3px;
    border-color: black;
    border-style: outset;
    background-color: rgb(175, 175, 175);
    text-align: center;
    grid-area: footer;
}

.grid {
    display: grid;
    grid-template-columns: .5fr 1fr .5fr;
    grid-gap: 1em;
    grid-template-areas: 
    'title title title'
    '. about .'
    '. nav .'
    '. footer .'
}

@media screen and (max-width: 800px) {
    h1 {
        color: white;
        font-size: 24pt;
        text-shadow: 7px 5px black;
        font-family: 'Times New Roman', Times, serif;
        margin-top: .5px;
    }

    .grid {
        display: grid;
        grid-template-columns: .5fr 1fr .5fr;
        gap: 1em;
        grid-template-areas: 
        'title title title'
        'about about about'
        'nav nav nav'
        'footer footer footer'
    }

    #links {
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style-type: none;
        padding: 0;
    }
}

.info {
    border-width: 3px;
    border-color: black;
    border-style: outset;
    background-color: rgb(175, 175, 175);
    text-align: center;
}

.info > p {
    margin-left: 2%;
    margin-right: 2%;
}

#footer > p {
    text-align: center;
}

a:link {
    color:blue;
}

a:visited {
    color:purple;
}

a:hover {
    color:red;
}

a:active {
    color:black;
}