@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Header */
header {
    position: fixed;
    width: 100%;
    z-index: 10000;
    background: #333333;
}

#header {
    display: flex;
}

#header-mobile {
    display: none;
}




/* Title */
.title {
    height: 80px;
    background: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.title h2 {
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    font-size: 2.3em;
    letter-spacing: 7px;
}

/* List */
.list {
    height: 30px;
    background: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    transition: 0.2s;
}

.list ul {
    display: flex;
}

.list ul li {
    list-style: none;
    margin: 0 30px;
    padding-bottom: 10px;
}

.list ul li a {
    text-decoration: none;
    color: white;
}





/* Mobile Styles */
@media only screen and (max-width: 1000px) {
    header {
        position: fixed;
        width: 100%;
        z-index: 10000;
    }

    #header {
        display: none;
    }

    #header-mobile {
        display: flex;
    }

    .title {
        padding-top: 80px;
        height: 150px !important;
        background: #333333;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.2s;
        font-size: 1.8em;
    }

    .title h2 {
        text-transform: uppercase;
        color: white;
        font-size: 5em;
        letter-spacing: 7px;
        font-family: 'Permanent Marker' !important;
    }

    .list {
        height: 150px !important;
        background: #333333;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Bebas Neue', sans-serif;
        transition: 0.2s;
        font-size: 2.9em;
    }

    .list ul {
        display: flex;
    }

    .list ul li {
        list-style: none;
        margin: 0 15px;
        padding-bottom: 10px;
    }

    .list ul li a {
        text-decoration: none;
        color: white;
    }

    