html {
    scroll-behavior: smooth !important;
}

body {
    font-family: Verdana, sans-serif;
    background-color: black;
}

h1,h2,h3,h4,h5,h6 {
    font-family: Georgia, serif;
    color: white;
}

h1 {
    text-align: center;
}

h2 {
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;
}

h3 {
    color: black;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

em {
    font-weight: bold;
    font-size: 120%;
}

blockquote {
    background: white;
    margin:1em;
    font-style: italic;
}

.firstLetter {
    font-size: 300%;
    font-family: Georgia, serif;
    color: red;
}

.firstWord{
    text-transform: uppercase;
}

#firstStory {
    color: #17037A;
}
 

#content {
    width: 75%;
    margin: 15px auto;
    background:white;
    padding: 1em 3em;
}

#navigation {
    text-align: center;
    font-family: "Futura", sans-serif;
    font-size: 100%;
    border: solid 2px white;
    width: 75%;
    margin: auto;
}

.back{
    font-family: "Futura", sans-serif;
    color: black; 
}

.back a:visited {
    color: black;
}

.back a:hover {
    color: black;
    font-weight: bold;
}


li {
    display: inline;
    list-style-type: none;
}

a {
    color: white;
    font-family: "Futura", sans-serif;
    font-style: none;
}

a:visited {
    color: white;
    font-family: inherit;
    font-style: none;
}

a:hover {
    color: white;
    font-family: inherit;
    font-weight: bold; 
}


/* Button */ 

.buttons {
    list-style-type: none;
}

.buttons a {
    background-color: white;
    color: black;
    border: 4px solid black;
    border-radius: 25px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 200px;
    margin: auto;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: bold;
    transition: background-color 0.4s, border 0.4s, color 0.4s;
}

.buttons a:hover{
    background-color: black;
    color: white;
    border: 4px solid white;
    border-radius: 25px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 200px;
    margin: auto;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: bold;
}