

body {
    background-color: antiquewhite;
}



header {
    background-color: rgb(236, 26, 26);
    text-align: center;
    padding: 16px 4px;
}

h1 {
    text-align: center;
    text-shadow: 1px 2px 2px rgba(255,255,255,.5);
    color:rgb(14, 13, 13);
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    text-decoration: underline;
}

nav {
    border:5px solid black;
    margin-top: 12px;
    margin-bottom: 12px;
}

nav ul {
    list-style: none;
    display:flex;
    flex-flow: row wrap;
    margin: 10px;
    
}

nav li {
    border: 2px solid rgb(199, 82, 82);
    flex: 0 0 180px;
    padding: 12px;
    margin: 10px;
}

nav a {
    text-decoration: none;
    display: block; width: 100%; height:100%;
    text-align: center;
    color:rgb(15, 15, 14);
    text-shadow: 1px 2px 2px rgba(250, 10, 10, 0.9);

}

nav a:hover {
    color:rgb(0, 143, 245);
    text-shadow: 4px 4px 4px yellow;
}

p {
    Text-align: center;
    color:rgb(14, 13, 13);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 36px;
}



