*{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

header{
    display: flex;
    flex-direction: column;
    background-image: url(../Asset/arena.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}

#btnMenu{
    position: absolute;
    padding-top: 2%;
    padding-left: 3%;
}

.logo{
    display: flex;
    flex-direction: column;
    margin-top: 3%;
    margin-bottom: 8%;
    align-items: center;
    justify-content: center;
}

.logo img{
    width: 45vw;
}

#btnMenu{
    position: absolute;
    width: 2%;
    padding: 2% 3%;
}

#btnMenu:hover{
    background-color: rgba(172, 46, 29, 0.25);
    cursor: pointer;
}

nav{
    position: fixed;
    display: none;
    background-color: rgba(195, 74, 30, 0.95);
    padding-bottom: 0;
    height: 100%;
    font-weight: bold;
    z-index: 2;
}

nav div{
    display: flex;
}

nav ul{
    list-style: none;
    margin: 0;
    padding: 80px 0 0;
}

nav ul li img{
    width: 14px;
    padding: 0 8px;
}

nav ul li a{
    display: flex;
    align-items: center;
    float: left;
    padding: 20px 20px;
    text-decoration: none;
    color: black;
    width: 180px;
}

nav ul li a:hover{
    background-color: #ac2e1d;
}

.sub-events{
    display: none;
}

.scrollUp{
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
}

#btnScrollUp{
    background-color: #c34a1e;
    border: 1px solid #c34a1e;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

#btnScrollUp:hover{
    background-color: #ac2e1d;
}

#btnScrollUp img{
    width: 20px;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    background-color: black;
    line-height: 2.5;
    padding-top: 30px;
    padding-bottom: 40px;
    font-size: 1vw;
}

.social-media{
    display: flex;
    justify-content: space-between;
    width: 12%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.social-media img{
    width: 2.5vw;
}

.privacy-etc{
    display: flex;
    width: 25%;
    justify-content: space-between;
}

.privacy-etc a{
    font-size: smaller;
    color: white;
}

@media only screen and (max-width: 800px) {
    nav{
        font-size: 8px;
    }

    nav ul{
        padding-top: 5vh;
    }

    nav ul li img{
        width: 8px;
        padding: 0 5px;
    }

    nav ul li a{
        float: left;
        padding: 10px 10px;
        text-decoration: none;
        color: black;
        width: 100px;
    }

    .scrollUp{
        display: none;
    }

    footer{
        line-height: 2.5;
        padding-top: 20px;
        padding-bottom: 30px;
        font-size: 10px;
    }
    
    .social-media{
        width: 100px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .social-media img{
        width: 20px;
    }
    
    .privacy-etc{
        width: 225px;
    }

}