body{
    margin: 0%;
    height: fit-content;
    background: url("/Portafolio_AngG/imagenes/fondo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


body::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px;     /* Tamaño del scroll en vertical */
    height: 5px;    /* Tamaño del scroll en horizontal */
    background: #000000;
}

body::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255);
    border-radius: 6px;
    width: 90%;
}



.filtro-body-rosa{
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 16.67%, rgba(179, 24, 80, 0.7) 45%, rgba(0, 0, 0, 0.7) 68.75%);
}

.filtro-body-negro{
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, #000000 35%, rgba(0, 0, 0, 0) 80%);
}

.encabezado{
    display: flex;
    position: fixed;
    align-items: center;
    width: 100%;
    height: 80px;
    background: black;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
    padding: 0% 50px;
    z-index: 1;
}

.cont-footer{
    width: 100%;
    height: 100px;
    background: black;
}

footer{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;    
    font-family: 'Raleway', sans-serif;
}

footer span{
    padding: 5px 0px;
}

.fondo-negro-mensaje{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    width: 100%;
    height: 1200px;
    top: 0%;
}

.mensaje-exitoso{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 30%;
    left: 42.5%;
    width: 200px;
    height: 250px;

    background: #499b13;
    border-radius: 20px;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.25);
}


