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;
            ul li{
             list-style: none;   
                
            }
            .botones{
                margin-top: 2rem;
                display: flex;
                gap: 2rem;
                align-items: center;
                justify-content: center;
                .aceptar{
                    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;
                }
                .rechazar{
                    text-decoration: none;
                    font-size: 1.3rem;
                    color: #3D1432;
                    box-shadow: inset 0px 0px 10px #3D3614;
                    padding: 0.3rem;
                    border-radius: 0.5rem;
                    text-decoration: none;
                    font-weight: 600;
                    
                }
                
                        
                
            }
        }
    }
}










