@charset "utf-8";

*/

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

#logo {
    width: 100px;
    display: flex;
    float: right;
}

body{
    font-family: "trebuchet ms", fira-sans-condensed, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    justify-content: space-between;
}

html {
    height: -webkit-fill-available; 
}

.contenedor {
    max-width: 50em;
    margin: 0 auto;
}

main {
    background-color: white;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    
    
}

header{
    width: 100%;
}

header .contenedor {
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid black;
    padding-bottom: .5em;
    padding-top: .6em;
    padding-left: .9em;
    padding-right: .9em;
}

footer {
    text-align: center;    
    color: white;
    padding: 1rem;
    font-size: 0.8rem;
    background-color: #4abcea;
}

.seguinos {
    display: inline-block;
    flex-direction: row;
    padding-bottom: .4em;
}

footer h3{
    font-size: 1rem;
    color:white;
    text-transform: uppercase;
    text-align: center; 
    margin: .3em;
}

.legales{
    background-color: #4abcea;
    color: white;
    padding: .1em;
    font-size: 0.8rem;
}

.icono {
    width: 20px;
    padding: .5em;
    align-content: center;
}

#menu {
    display: none;
}

header label {
    display: none;
    width: 30px;
    height: 30px;
    padding-bottom: .4em;
}

header label:hover {
    cursor: pointer;
    background-color: #cdebf7;
}

.menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    font-size: 10px;
}

.menu li {
    text-align: center;
}

.menu li:hover {
    background-color: #cdebf7;
}

.menu li a {
    display: block;
    padding: 10px 10px;
    color: black;
    text-decoration: none;
}

@media (max-width: 768px) {
    header label {
        display: block;
    }
    
    .menu {
        position: absolute;
        background-color: white;
        width: 50%;
        margin-left: -70%;
        transition: all 0.5s ease;
    }
    
    .menu ul {
        flex-direction: column;
        background-color: rgb(224, 246, 255);
    }
    
    .menu li {
        border-top: 1px solid black;
    }
    
    #menu:checked ~ .menu {
        margin: 0;
    }
}

/*BASES*/
#bases >*
#bases p:not(:last-child) {
    margin-bottom: 1em;
}

#bases {
    max-width: 50em;
    width: 100%;
    margin-top: 1em;
    border-radius: 1em;
    flex-direction: column;
    font-size: 15px;
}

#titulo {
    background-color: #4abcea;
    text-align: center;
    color: white;
    text-transform: uppercase;
    padding: 0.5em 0;
    font-family:  ‘Montserrat’ , sans-serif;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 1em;
    padding-top: 1em;
}
#bases{
    
}
#bases h1{
    text-align: center;
    background-color: #4abcea;
    color:white;

}
#bases h2{
    font-size:20px;
        background-color: #4abcea;
    color:white;

}
 
.button {
    border-radius: 50px;
    display: flex;
    margin: auto;
    margin-bottom: 2em;
    padding: 10px 20px;
    text-decoration: none;
    justify-content: center;
    padding-top: .5em; 
    color: white;
    background-color: #39afdf;
     border-radius: 50px;
}