* {
    margin: 0;
    padding: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: bold;
}

a {
    text-decoration: none;
}

p, a, h1 {
    color: black;
}

ul {
    list-style-type: none;
    overflow: hidden;
}

nav {
    background-color: black;
    display: flex;
    justify-content: center;
    padding: 10px;
    border-bottom: solid gray 1px;
}

nav div {
    align-items: center;
}

nav a {
    color: white;
}

nav > div {
    max-width: 1600px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#navbar {
    display: flex;
}

#navbar > a {
    padding: 10px;
}

#logo, #logo img {
    height: 40px;
    width: 40px;
    margin-right: 20px;
}

#join-button > a {
    padding: 10px;
    text-transform: uppercase;
    background-color: #13bb13;
    border-radius: 8px;
    color: black;
}

#section-1 {
    height: 1000px;
    background-image: url(../img/section_1.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
}

#section-1 h1 {
    font-size: 150px;
    color: white;
}

#section-2 {
    border-top: solid gray 1px;
    background-color: black;
    color: white;
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#section-2 h2 {
    font-size: 30px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
}

#section-2 p {
    color: white;
    padding-bottom: 50px;
}

#section-2 > div {
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    text-align: center;
    max-width: 1600px;
}

#section-2 img {
    border: solid rgb(255, 255, 255) 1px;
}

footer {
    border-top: solid gray 1px;
    background-color: black;
}

footer p {
    color: white;
}

footer div {
    text-align: center;
    padding: 20px;
}

@media screen and (min-width: 1001px) {
    #section-1 h1 {
        font-size: 150px;
    }

    #section-2 img {
        width: 450px;
    }

    #section-2 > div {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1000px) {
    #section-1 h1 {
        font-size: 100px;
    }

    #section-1 {
        height: 800px;
    }

    #section-2 img {
        width: 100%;
    }
}

@media screen and (max-width: 650px) {
    #section-1 h1 {
        font-size: 80px;
    }

    #section-1 {
        height: 600px;
    }
}

@media screen and (max-width: 500px) {
    #section-1 h1 {
        font-size: 50px;
    }

    #section-1 {
        height: 400px;
    }
}