@import url('https://fonts.googleapis.com/css2?family=Poppins: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=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body{
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient( #0000008d , #0000008d ), url("../images/bg.webp") ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

header{
    z-index: 2;
    font-family: Poppins;
    display: flex;
    position: absolute;
    top:10px;
    left: 50%;
    transform: translate(-50% , 0);
    text-align: center;
    padding: 0px 40px;
    padding-left: 0;
    background-color: rgba(0, 0, 0, 0.137);
    box-shadow: 0px 0px 5px rgba(0, 0, 0);
    border-radius: 50px;

    backdrop-filter: blur(2px);
    align-items: center;
    transition: all 1s;
}

.main_nav_list{
    padding: 10px;
    margin: 0;
}

.main_nav_list_element{
    display: inline-block;
}

header button{
    background-color: none;
    border: none;
    padding: 10px 15px;
    text-transform: uppercase;
    margin-left: 5px;
    /*  background-color: #1f1d1d; */
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
}
#button_list {
    position: relative;
    background-color: rgba(0, 255, 0, 0.137);
    z-index: 2;
    margin: 0;
    height: 57px;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-right: 30px;
}
#button_list.red{
    background-color: rgba(255, 0, 0, 0.137);
}
#button_list.yellow{
    background-color: rgba(255, 255, 0, 0.137);
}
.list_gamer {
    position: absolute;
    top: 57px;
    left:24px;
    opacity: 1;
    height: auto;
    background-color: rgba(0, 255, 0, 0.137);
    padding: 15px;
    margin: 0;
    width: 175px;
    border-radius: 50px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 2px 3px 5px rgba(0, 0, 0);
    transition: all .2s ease-out;
}
.list_gamer dd{
    margin: 15px 0;
}

.none {
    height: 0;
    opacity: 0;
}




.active{
    background-color: #8e8e8e76;
    color:  #ff2800;
    transition: all 0.5s ;
}

main{
    display: flex;
    flex: 1;
}


.main_content{
    display: flex;
    width: 80%;
    justify-content: space-evenly;
    align-items: center;
    margin: 90px 10%;
}
h1 ,h2{
    color: #fff;
    font-family: Work Sans;
    margin: 5px 0px;
    font-size: 25px;
}
h2{
    font-size: 20px;
}
p{
    font-family: Poppins;
    color: #fff;
    padding-top: 10px;
    margin: 5px 20px;
    max-width: 550px;
    font-size: 15px;
}

.dc{
    text-align: center;
}

.dc a{
    font-family: Poppins;
    display : inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    background-color: #7289da;
    box-shadow: 0px 0px 5px black;
    transition: all 0.5s;

}

.dc a:hover{
      background-color: #5069b8;
}

.dc a span{
    margin: 0 3px;
}

.dc svg{
    position: relative;
    top:2px;
    width: 0;
    height: 16px;
    transition: all 1s ;
}
.dc a:hover svg{
    width: 16px;
}

.hiden{
    display: none;
}

.mapa_content{
    height: 100%;
    width: 100%;
}

.mapa{
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;

}

@media (max-width:740px) {
    .main_content{
        gap: 20px;
        flex-direction: column;
        justify-content: space-around;
    }
    #button_list{
        height: 94px;
    }
    header{
        padding: 0;
    }
    p , h1{
        text-align: center;
    }
}

@media (max-width:400px) {
    header{
        width: 190px;
        padding: 0;
    }
    #button_list{
        margin-right: 0px;
    }
}
