body {
    margin: 0;
    background: black;
    font-family: "Special Elite", serif;
    
}

.wrapper {
    width: 100%;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: center;
    font-family: "Trade Winds", serif;
    letter-spacing: 4px;
}

.navlink a {
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
}

.header {
    padding-left: 20px;
    padding-right: 20px;
    a:link {
        text-decoration: none;
    }
    a:visited {
        text-decoration: none;
    }
}

.header h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    color:white;
    text-align: center;
    letter-spacing: 5px;
    font-family: "Special Elite", serif;
}

.content {
    margin-top: 20px;
}

.heroimage img {
    display: flex;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    justify-content: center;
}

.footer {
    padding: 20px;
    text-align: center;
    color: white;
    margin-top: 50px;
    margin-bottom: 0px;
    font-size: 20px;
}

@media only screen and (min-width:431px) {
    body {
        max-width: 1200px;
        margin: auto;
    }

    .header h1 {
        font-size: 65px;
    }

    .nav {
        flex-direction: row;
        font-size: 25px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .navlink a:hover {
        background: white;
        color: blue;
    }
}

@font-face {
    font-family: 'Special Elite';
    src: url(SpecialElite-Regular.ttf);
}

@font-face {
    font-family: 'Trade Winds';
    src: url(TradeWinds-Regular.ttf);
}