* {
    font-family: "Fredoka One", cursive;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    min-height: 100%;
    display: flex;
}
body {
    width: 100%;
    padding: 2%;
    /* display: flex; */
    /* grid-template-rows: 1fr 4fr; */
    /* align-items: center; */
    text-align: center;
    /* gradiente */
    background: #bbd2c5; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #292e49, #536976, #bbd2c5); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
        to right,
        #292e49,
        #536976,
        #bbd2c5
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.logo {
    min-height: 30%;
    background: url("logo.png") no-repeat center;
    background-size: contain;
}
.contenido {
    min-height: 50%;
    /* color: #8b080b; */
    color: rgba(255, 255, 255, 0.7);
}
.contenido h2 {
    margin-bottom: 4%;
}
.contenido a {
    text-decoration: none;
    outline: none;
    background: none;
    border: 1px solid #b7b2a6;
    color: #b7b2a6;
    padding: 2%;
    margin: 2%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
}
.contenido a:hover {
    background-color: #292e49;
}
.fas{
    font-size: 2em;
}
