@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@300&family=Titillium+Web:wght@600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
}

#parte-arriba {
    display: flex;
    padding-top: 23px;
    padding-bottom: 31px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background: #062179;
}

#parte-arriba div {
    position: relative;
    top: 19px;
    margin-left: 28%;
}

.titulo {
    display: flex;
    align-items: center;
    color: #fdfdfd;
    font-family: sans-serif;    
    margin-left: 9.5%;
    font-size: 120px;;
    width: auto;
    position: relative;
    left: 1%;
    -webkit-box-reflect: below -41px linear-gradient(transparent, rgb(255,255,255,8%));
}

.subtitulo {
    font-size: 16px;
    font-family: "Heather BTN", cursive;
    font-weight: normal;
    position: relative;
    color: #fdfdfd;
    right: 42px;
    top: 32px;
}

.imagen {    
    display: flex;
    width: 279px;
    position: relative;
    left: 49px;
}

.imagen_2 {
    display: none;
}

#botones {
    display: grid;
    justify-content: center;
    position: relative;
    z-index: 1;
    background-color: #062179;
    height: 59px;
    width: 100%;
    padding: 0 5px 0 5px;
    margin-top: 10px;
    margin-bottom: 64px;
    grid-template-columns: auto auto auto auto auto auto;
    gap: 4.5%;    
}

.imagen_btn {
    display: none;    
}

#btn_menu {
    display: none;
}

#menu {
    display:none
}

.btns_menu {
    color:white;
    font-family: 'Titillium Web', sans-serif;
    text-decoration: none;
    text-align: center;
    font-size: 21px;
    margin-top: 40%;
    margin-bottom: 4%;
    transition: .3s ease all;
}

#menu a:hover {
    color: #efff00;
}

.boton-de-paginas {
    color: white;
    font-family: 'Titillium Web', sans-serif;
    cursor: pointer;
    font-size: 21px;
    height: 30px;
    transition: .3s ease all;
    margin-top: 12px;
    text-decoration: none;
}

.boton-de-paginas:hover {
    color: rgb(239, 255, 0);
}

#current {
    color: rgb(239, 255, 0);
}

@media screen and (max-width: 974px) {
    #parte-arriba div {
        display: none;
    }        
    .titulo {
        display: none;
    }

    .imagen {
        display: none;
    }

    .imagen_2 {
        display: flex;
        width: 336px;        
    }
}

@media screen and (max-width: 769px) {
    #parte-arriba {
        display: none;
    }
    
    #botones {
        display: flex;
        height: 128px;
        padding: 0 11px 0 11px;
        gap: none;
        grid-template-columns: none;
        margin-top: 0;
        align-items: center;
        justify-content: flex-end;
        padding-left: 35px;
    }

    .boton-de-paginas {
        display: none;
    }

    #menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -250px;
        background-color: rgb(28 45 117);
        width: 165px;
        height: 100vh;
        padding: 12px;
        z-index: 1;
        transition: all 300ms;    
    }

    #back_menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgb(0 0 0 / 48%);
        display: none;
    }

    #btn_menu {
        display:flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        width: 50px;
        height: 50px;
        position: relative;
        left: 21%;        
        cursor: pointer;
        transition: .3s ease all;
    }

    .imagen_btn {
        display: block;
        width: 115px;
        position: relative;
        right: 75%;
        background: white;
        border-radius: 68px;        
    }
    
}

@media screen and (max-width: 499px) {
    .imagen_btn {        
        right: 65%;                
    }

    #btn_menu {        
        left: 35%;                
    }
}

@media screen and (max-width: 280px) {
    .imagen_btn {
        width: 106px;
    }

    #btn_menu {        
        left: 50%;                
    }
}