@font-face {
    font-family: titulos;
    src: url(fuentes/titulos.ttf);
}

@font-face {
    font-family: subtitulos;
    src: url(fuentes/subtitulos.ttf);
}

*{
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    background: linear-gradient(#d90467,#f29f05, #f2b705);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#inicio{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

#inicio > img{
    width: 150px;
    height: 150px;
    margin: 2px;
}

#inicio > h1{
    font-family: 'titulos', sans-serif;
    font-size: 150%;
    text-align: center;
    margin: 2px;
}

#inicio > h2{
    font-family: 'subtitulos', serif;
    font-size: 100%;
    text-align: center;
    margin: 2px;
}

#links{
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#links > a{
    height: 50px;
    text-decoration: none;
    background-color: #0d0d0d;
    color: #fff;
    border: 2px #0d0d0d solid;
    border-radius: 10px;
    margin: 10px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px #fff;
}

#links > a:hover{
    transition: all .8;
    background-color: #f2f2f2;
    font-weight: bold;
    color: #000;
    border: 2px #f2f2f2 solid;
    box-shadow: 2px 2px 5px #d9d9d9;
}

#links > a > p{
    font-family: 'subtitulos', serif;
    font-size: 100%;
    text-align: center;
    margin: 2px;
}

#links > a > img{
    width: 30px;
    height: 30px;
    margin: 2px;
}

#footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

#footer > p{
    font-family: 'subtitulos', serif;
    font-size: 100%;
    font-weight: bold;
    text-align: center;
    margin: 2px;
}

/* Tablets */
@media only screen and (min-width: 576px) and (max-width: 820px){
    body {
        height: 100vh;
    }
}

/* Teléfonos */
@media only screen and (max-width: 575px){
    body {
        height: 100vh;
    }
}
