
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Open Sans', sans-serif;
}
body{
    background-color: #3A3A3A;
}
/* Header navigation */
.header-container{
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    margin: 2vh 6.24vh 2vh 6.24vh;
    gap: 20vh;
}
.header-nav{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 90px;
}
.header-menu{
    color: white;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
}
.header-menu:hover{
    cursor: pointer;
    color: #FF7E7E;
    transition: 1s;
}
.header-menu-active{
    color: #FF7E7E;
    font-size: 18px;
    line-height: 21px;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
}
.header-menu-active:hover{
    cursor: pointer;
}
.language, .content{
    text-decoration: none;
    color: white;
}
.language:hover, .content:hover{
    color: #FF7E7E;
    transition: 1s;
}
.header-dropdown-1, .header-dropdown-2{
    position: absolute;
    display: none;
}
.header-menu:hover .header-dropdown-1{
    display: flex;
    flex-direction: column;
    gap: 1vh;
    background-color: #3A3A3A;
    padding: 2vh;
    box-shadow: 1px 10px 25px #0000006b;
    z-index: 100;
}
.header-menu:hover .header-dropdown-2{
    display: block;
    background-color: #3A3A3A;
    padding-top: 1vh;
    padding-right: 1vh;
    padding-left: 1vh;
    padding-bottom: 1vh;
    box-shadow: 1px 10px 25px #0000006b;
    z-index: 100;
}
/* Title page */
.title-container{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 84.39vh;
    gap: 31.21vh;
}
.title-container::after{
    content: "";
    background: url("Basketball1.svg");
    opacity: 0.7;
    position: absolute;
    width: 100%;
    height: 84.39vh;
    gap: 31.21vh;
    z-index: -1;   
}
.title-section{
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
    align-items: center;
    gap: 5.2vh;
}
.title-text-red{
    font-size: 55px;
    font-weight: bold;
}
.title-text-blue{
    font-size: 55px;
    font-weight: bold;
}
.title-text-red p{
    color: #FFA2A2;
    text-decoration: none;
}
.title-text-blue p{
    color: #8EF5E9;
}
.title-btn-red{
    display: flex;
    justify-content: center;
    width: 24.14vh;
    height: 5.72vh;
    background-color: #FFA2A2;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    border-radius: 10px;
    text-decoration: none;
}
.title-btn-red:hover{
    cursor: pointer;
    background-color: rgb(255, 102, 102);
    transition: 1s;
}
.learn-more{
    align-self: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}
.title-btn-blue{
    display: flex;
    justify-content: center;
    width: 24.14vh;
    height: 5.72vh;
    background-color: #8EF5E9;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    border-radius: 10px;
    text-decoration: none;
}
.title-btn-blue:hover{
    cursor: pointer;
    background-color: #15ffe4;
    transition: 1s;
}
/* Footer */
.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3vh 8vh 3vh 8vh;
}
.footer-logos{
    display: flex;
    gap: 5.53vh;
}
.footer-text{
    color: white;
    font-size: 18px;
    font-weight: 600;
}
/* Media */
@media only screen and (max-device-width: 480px) and (max-device-height: 900px){
    .header-container{
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        height: 20vh;
        gap: 5vh;
    }
    .header-nav{
        gap: 2vh;
    }
    .title-container{
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 70vh;
        height: 130vh;
        flex-direction: column;
    }
    .title-container::after{
        content: "";
        background: url("Basketball1.svg");
        opacity: 0.7;
        position: absolute;
        width: 70vh;
        height: 130vh;
        z-index: -1;   
    }
    .title-text-red, .title-text-blue{
        font-size: 40px;
        text-align: center;
    }
    .footer{
        gap: 40vh;
    }
}