/*
Estilo general para la página de inicio
*/

body {
    margin: 0;
    background-image: url(images/jrz1905.jpg);
    background-size: 120%;
    background-position: top 20% center;
}

a:link, a:visited {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

img {display: block;}

div.container-full {
    width: 90%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
}

div.container-text {
    display: flex;
    flex-wrap: wrap;
    box-align: center;
    margin-bottom: 20px;
    border-radius: 20px;
}

div.header {
    background: rgb(250, 159, 67, 0.95);
    border-radius: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

div.header h1 {
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: black;
    /*font-family: "Limelight", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-family: "Castoro Titling", serif;*/
    font-family: "Roboto Slab", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-top: 10px;
    padding-bottom: 10px;
}

div.left-container {
    flex: 75%;
    margin-bottom: 0px;
}

div.img__wrap {
    position: relative;
}

.img__description_layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(36, 62, 206, 0.3);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;

  /* transition effect. not necessary */
    transition: opacity .2s, visibility .2s;
}

.img__wrap:hover .img__description_layer {
    visibility: visible;
    opacity: 1;
    }

.img__description {
    transition: .2s;
    transform: translateY(1em);
    text-align: center;
    font-size: 20px;
    color: white;
    /*font-family: "Maname", serif;*/
    font-family: "Roboto Slab", sans-serif;
    padding-left: 10px;
    padding-right: 10px;
}

.img__description_main {
    transition: .2s;
    transform: translateY(1em);
    text-align: center;
    font-size: 20px;
    color: white;
    /*font-family: "Maname", serif;*/
    font-family: "Roboto Slab", sans-serif;
    padding-left: 50px;
    padding-right: 50px;
}

.img__description p {
    color: white;
}

.img__wrap:hover .img__description {
  transform: translateY(0);
}

div.gallery {
    float: right;
    flex: 25%;
    height: auto;
    margin-bottom: 0px;
}