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 {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 20px;
    p {
        color: white;
        text-align: justify;
        justify-content: center;
        letter-spacing: 2px;
        line-height: 30px;
        width: 100%;
    }
    img {
        width: 100%;
        margin-top: 20px;
    }
}

.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;
    }

    .content {
        display: flex;
        flex-direction: row;
        gap: 50px;
        img {
            width: 100%;
            display: flex;
        }
        p {
            font-size: 20px;
            display: flex;
        }
    }

    .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);
}