@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

#vd{
    position: fixed;
    min-width: 100%;
    min-height: 100%;     
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

/* header */
header{
    position: relative;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    width: 99%;
    height: 100px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 20px;
    border-radius: 6px;
    display: flex;
    justify-content: flex-start;
}

header #logo{
    position: absolute;
    top: 10px;
    left: 1%;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
    display: inline-block;
    color: white; 
}

header #logo img{
    width: 80px;
    height: 80px;
    border-radius: 3px;
    vertical-align: middle;
}


header #logo #p-logo{
    position: absolute;
    top: 25px;
    left: 80px;
    width: 300px;
}

header #logo:hover{
    opacity: 0.5;
}

header #main{
    position: absolute;
    left:38%;
    top: 35.5px;
    display: inline-block;
    text-align: right;
    vertical-align: middle;
}

header #main ul{
    list-style: none;
    display: flex;
}

header #main ul li{
    display: inline-block;
    display: flex;
}

header #main ul li a{
    text-decoration: solid;
    display: inline-block;
    display: flex;
    font-weight: bolder;
    font-size: 20px;
    margin-right: 15px;
    color: white;
}

header #botones{
    position: absolute;
    right:5%;
    top: 29px;
    display: inline-block;
    text-align: right;
    vertical-align: middle;
}

header #botones ul{
    list-style: none;
    display: flex;
}

header #botones ul li{
    display: inline-block;
    display: flex;
}

header #botones ul li a{
    text-decoration: none;
    display: inline-block;
    display: flex;
    font-weight: bolder;
    font-size: 20px;
    margin-right: 10px;
    color: white;
    border-radius: 3px;
    border-color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    font-weight: bolder;
    font-size: 25px;
    color: white;
}

header #main ul li a:hover, header #botones ul li a:hover{
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
}

#botoncito{
    width: 70px;
    height: 80px;
    position: fixed;
    left: 0;
    bottom: 0;
}

#botoncito:hover{
    cursor: pointer;
}


#info{
    width:500px;
    height:450px;
    position: fixed;
    left:0.2%;
    top: 15.3%;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    vertical-align: center;
    border-radius: 6px;
}

#info h1{
    position: absolute;
    top: 30px;
    right: 25%;
    font-size: 30px;
    font-weight: bolder;
    margin-bottom: 10px;
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
}

#info p{
    position: absolute;
    top: 85px;
    font-size: 15px;
    font-weight: bold;
    margin-right: 2px;
    margin-left: 2px;
}

#emergencia{
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    width: 200px;
    height: 100px;
    position: fixed;
    bottom: 0;
    right: 0;
    text-align: center;
    vertical-align: center;
}

#emergencia #emergencia-h1{
    margin-bottom: 10px;
}

.privacidad{
    position: fixed;
    bottom: 0;
    left: 30%;
    width:500px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.privacidad #privacidad-pv{
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    color: white;
    position: absolute;
    top: 20px;
    left: 20px;
}

.privacidad #privacidad-pd{
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
}

@media only screen and (max-width: 768px) {
    header{
        height: 65px;
    }


    header #logo{
        font-size: 12px;
        position: absolute;
        left: 0;
        bottom: 5px;
    }

    header #logo img{
        width: 40px;
        height: 40px;
    }

    header #logo #p-logo{
        visibility: hidden;
    }


    header #main{
        position: absolute;
        left:15%;
        top: 25px;
    }

    header #main ul li a{
        font-size: 10px;
    }

    header #botones{
        position: absolute;
        right: 2%;
        top: 22px;
    }

    header #botones ul li a{
        font-size: 14px;
    }

    .privacidad{
        position: fixed;
        bottom: 0;
        left: 30%;
        width:500px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 3px;
    }
    
    .privacidad #privacidad-pv{
        font-weight: 800;
        font-size: 20px;
        text-decoration: none;
        color: white;
        position: absolute;
        top: 20px;
        left: 20px;
    }
    
    .privacidad #privacidad-pd{
        font-weight: 800;
        font-size: 20px;
        text-decoration: none;
        color: white;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    #info{
        position: fixed;
        top:110px;
        width: 100%;
        height: 65%;
    }

    #info h1{
        font-size: 20px;
    }

    #info p{
        font-size: 14px;
    }

    .privacidad{
        width: 100%;
        height: 40px;
        position: fixed;
        bottom: 110px;
        left: 0;
    }

    .privacidad #privacidad-pv, .privacidad #privacidad-pd{
        font-size: 9.5px;
        position: absolute;
        top: 15px;
    }
    
    #botoncito{
    width: 50px;
    height: 60px;
    left: 20px;
    bottom:5px;
    }
}



