html {
    height: 100%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    background-size: cover;
    background-color: rgb(202, 183, 159);
}

.container {
    margin-left: auto;
    margin-right: auto;
    width: 1024px;
    min-height: 300px;
        /* Phone view */
        max-width: fit-content;

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
    min-height: 200px;
}
main {
    min-height: 300px;
    text-align: center;
   }
h1 {
    font-size: 40px;
    text-align: center;
    padding-bottom: 40px;
}
p {
    font-size: 20px;
    text-align: center;
}

nav {
    text-decoration: none;
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
}
a {
    color: rgb(3, 46, 3);
    text-decoration: none;
}
.textcolor {
    color: rgb(3, 46, 3);
}
}