/*

base: 34, 39, 51
fondo: 243, 245, 248
rojo: 245, 64, 64

*/

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: rgb(243, 245, 248);
}

.footer {
    display:flex;
    width:100%;
    height:auto;
    text-align: center;
    margin: 50px auto 50px auto;
    justify-content: center;
    position:relative;
}

a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

li {
    list-style-type: none;
}

input[type=text] {
    cursor: text;
}
 
button {
    cursor: pointer;
} 
dialog{
    transition: all .25s linear allow-discrete;
    opacity: 0;
}

dialog[open]{
    transition: all .25s linear;
    opacity: 1;
    @starting-style{
        opacity: 0;
    }

}