*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    max-width: 100%;
}
nav {
    background-color: rgba(45, 45, 42, 1);
    width: 100vw;
    max-width: 100%;
    height: 50px;
    position: fixed;
    z-index: 1;
}

nav ul{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    height: 100%;
}

nav ul li{
    text-align: center;
}

nav ul li a{
    color: white;
    font-size: clamp(18px, 2vw, 24px);
    text-decoration: none;
}
nav ul li a:hover{
    color: #FFB81C;
}
#navigationToggle {
    display: none;
}

h1{
    font-size: clamp(72px, 7vw, 150px);
    letter-spacing: 5px;
}
h2{
    font-size: clamp(32px, 3vw, 100px);
}
h3{
    font-size: clamp(28px, 2vw, 54px);
}
h4{
    font-size: clamp(20px, 1.5vw, 36px);
}
p{
    font-size: clamp(12px, 1.25vw, 28px);
}


@media only screen and (max-width: 800px){
    nav ul{
        display: none;
    }
    nav img{
        height: 50px;
    }
    nav ul li{
        text-align: center;
        width: 100%;
        height: 40px;
    }
    nav ul li a{
        color: white;
        text-decoration: none;
        font-size: 24px;
    }
    nav ul li a:hover{
        color: #FFB81C;
    }
    #navigationToggle {
        position: absolute;
        right: 0px;
        display: block;
    }
    #navigationToggle + ul.active li {
        background-color: #2D2D2A;
        margin: 0;
        padding: 0;
    }
    
    #navigationToggle + ul.active {
        background-color: #2D2D2A;
        display: block;
        padding-top: 50px;
        width: 100vw;
        opacity: 1;
    }
}

#home{
    margin: auto;
    height: 100vh;
    width: 100vw; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),url(../Asset/games.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#home .container{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#home .container h1, #home .container h2, #home button{
    text-align: center;
    color: white;
}

#home button{
    font-size: clamp(18px, 1.5vw, 36px);
    padding: 10px 20px 10px 20px;
    border-radius: 30px;
    margin: 20px;
    background-color: transparent;
    background-repeat: no-repeat;
    border: solid 1px white;
    cursor: pointer;
    overflow: hidden;
    outline: none;
}
#home button:hover{
    background-color:white;
    color: black; 
}

.content{
    height: auto;
    margin: 30px 2% 0 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.content .container{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 30px 0 50px 0;
}
.content .container button{
    font-size: clamp(18px, 1.5vw, 36px);
    padding: 10px 15px 10px 15px;
    border-radius: 30px;
    margin: 5px;
    background-color: white;
    border: solid 2px #FFB81C;
}
.content button:hover{
    background-color:#FFB81C; 
}

.content .container .news{
    margin-bottom: 30px;
}

.content .container .news img{
    width: 100%;
    height: 40vh;
    object-fit: cover;
}

.content .container2{
    margin: 20px 0 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    width: 100%;
}
.content .morebtn{
    font-size: clamp(18px, 1.5vw, 36px);
    padding: 10px 30px 10px 30px;
    border-radius: 30px;
    margin: 5px;
    color: black;
    background-color: white;
    margin-bottom: 50px;
}

.content .container2 .match{
    padding: 5px 20px 20px 20px;
    border-radius: 15px;
    background-color: #D9D9D9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .container2 .match .score{
    font-size: clamp(24px, 2vw, 36px);
    font-weight: bold;
}

.content .container2 .match h4{
    margin-bottom: 10px;
}


footer{
    height: auto;
    background-color: black;
    padding-bottom: 10px;
}

footer .container{
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

footer h2, footer h3, footer h4{
    color: white;
}

footer .container2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

footer a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 10px;
}
footer a:hover{
    color: #FFB81C;
}

footer img{
    height: 30px;
}