*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url(img/fondo2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#Estructura{
    width: 40%;
}
#texto{
    color: white;
    text-align: center;
}
#titulo{
    text-align: center;
    padding-bottom: 70px;
}
#opciones{
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 25px;
}
#opciones a{
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}
#opciones a:hover{
    color: cornflowerblue;
}
#enlaces{
    text-align: center;
}
#enlaces a{
    font-size: 50px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
#enlaces a:hover{
    color: cornflowerblue;
}
h1{
    font-family: "Radley", serif;
    font-weight: 700;
    font-style: normal;
    color: white;
}
h2{
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: Normal;
    padding-bottom: 10px;
}
p{
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: Thin 100 Italic;
    padding-bottom: 25px;
}