*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#Cabecera{
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
}
#opciones{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 35%;
    position: absolute;
    right:1%
}
#opciones a{
    color: black;
    font-size: 17px;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: Normal;
    text-decoration: none;
    transition: color 0.3s ease; 
}
#opciones a:hover{
    color: cornflowerblue;
}
#enlaces{
    position: absolute;
    left: 3%
}
#enlaces a{
    font-size: 40px;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}
#enlaces a:hover{
    color: cornflowerblue;
}
#Titulo h1{
    font-family: "Radley", serif;
    font-weight: 700;
    font-style: normal;
}
#Imagenes{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-evenly;
}
.Bloque{
    height: 325px;
    width: 350px;
}
.img{
    height: 250px;
    width: auto;
}
.Bloque img{
    width: 100%;
    height: 240px;
    object-fit:cover;
    display: block;
    box-shadow: 10px 5px 5px lightslategray;
}
.Bloque img:hover {
    filter: brightness(0.7);
}
.Texto{
    text-align: center;
    margin: 15px;
}
.Texto h1{
    font-family: "Radley", serif;
    font-weight: 700;
    font-style: normal;
}
.Texto p{
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: Normal;
}