/* css reset*/
*{
    margin: 0;
    padding: 0;
    border: 0;
   
  }

/* flex styles */

.column{

    display: flex;
    flex-flow: column nowrap;
}


.row{

    display: flex;
    flex-flow: row nowrap;
}

.v-centered{

    align-items: center;
}
.h-centered{
    justify-content: center;
 
}

/* END flex styles */

body {
    font-family: 'Lora', serif;
    background-color: #F4E1C1;
    color: #5D4037;
   margin: 0;
}


main{
    margin: 0 10% ;
    text-align: center;
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #2E7D32;
}
.button {
    font-family: 'Montserrat', sans-serif;
    background-color: #2E7D32;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}


/* navigation bar styles */

nav{
   margin: 0;
    background-color: #5D4037;
    
}

nav ul{
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    margin: 0;
}

nav ul li{
    padding: 8px;
    list-style: none;
    font-size: 20px;
    font-weight: bold;
}
nav ul li a{
 
    color: white;
    text-decoration: none;
  
   
}

nav ul li:hover{
    
    background-color: #2E7D32;
}

/* END navigation bar styles */

#expositor{

    background-color: #A7C7A5; 
}
#expositor img{
   width: 70%;

}


/* footer styles */
    footer{
        font-size: 20px;
        font-weight: bold;
        background-color: #5D4037;
        color: white;
        text-align: center;
    }

/* END footer styles */



/*
Expositor styles
*/

#expositor > :nth-child(2){

    opacity: 0;
}