@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;
}


.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    background: #262A2B;
    padding: 10px;
    color: white;
    bottom: 0px;
    width: 100%;
}
.footer button
{
    background: transparent;
    border: none;
    cursor: pointer;
    color: #d1d1d1;
    font-size: 1em;
    text-decoration: underline;
    font-family: 'Bebas Neue', sans-serif;
}
.footermobile {
    display: none;
}

/* Mobile Styles */
@media only screen and (max-width: 1000px) {


    #footer {
        display: none;
    }

    .footermobile {
        display: block;
    }

    .footer {
        font-family: 'Bebas Neue', sans-serif;
        background: #262A2B;
        padding: 10px;
        text-align: center;
        color: white;
        position: fixed;
        bottom: 0;
        font-size: 2.5em;
	width: 100%
    }
}