html{
    display: flex;
    flex-direction: column;
    width: 100vw;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    overflow-y: scroll;
    
    body{
        display: flex;
        flex-direction: column;
        width: 80%;
        align-items: center;
        background-color: #B9BDBD;
        color: #326868;
        gap:1rem;
        
        header{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            img{
                width: 40%;
            }
          

           

        }
        main{

            margin-bottom: 3rem;
            ol li{
                list-style-type: none;
            }
            .botones{
                margin-top: 2rem;
                display: flex;
                gap: 2rem;
                align-items: center;
                justify-content: center;
                .salir{
                    text-decoration: none;
                    font-size: 1.5rem;
                    color: #326868;
                    box-shadow: inset 0px 0px 10px #3D3614;
                    padding: 0.3rem;
                    border-radius: 0.5rem;
                    text-decoration: none;
                    font-weight: 600;
                }
               
                
                        
                
            }
        }
    }
}




/* body{
    width: 90%;
    display: flex;
    flex-direction: column;
}

*{
    font-family: 'Montserrat', sans-serif;
}

img{
    width: 20%;
    margin: 3% 0% 0% 40%
    
}

article{
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    padding-left: 15%;
    width: 60%;
}

a{
    text-decoration: none;
}

.botones{
    display: flex;
    width: 100%;
    flex-direction:row-reverse;
    align-items: center;
    justify-content:center;
    gap: 10%;
}

.aceptar{
    flex: 1;
    width: 100%;
    background-color: #089130;
    color: white;
    font-size: 2em;
    text-align: center;
    padding: 0.1% 0.5% 0.1% 0.5%;
    border-style: solid;
    border-radius: 10px;
    border-color: #058129;
    transition: 5s background-color width;
}

.aceptar:hover{
    width: 110%;
    background-color: #AFFF33;
    cursor: pointer;
    
}

.rechazar{
    width: 100%;
    background-color: #965C07;
    color: white;
    font-size: 1.6em;
    text-align: center;
    padding: 0.1% 0.5% 0.1% 0.5%;
    border-style: solid;
    border-radius: 10px;
    border-color: #845509;
    transition: 1s background-color;
}

.rechazar:hover{
    background-color: #B31111;
}




@media (max-width: 768px){

.botones{
    flex-wrap:wrap;
}

} */

