@charset "UTF-8";


body{
    margin: 0;
     font-family: 'Kavoon';
    background-color: #05a936;
}
quote{
    display: block;
    padding: 20px;
     font-family: 'Kavoon';
    font-size: 1.25rem;
    line-height: 1.6;
    color: #007702;
    background-color: #fffc46;
    border-left: 5px solid #fff28e ;
    margin: 20px 0;
}
h1{
    font-family: 'Kavoon';
    

}

.p {
   background-color: white;
}
header img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
nav  {
    background-color: #fff024;
    padding: 15px;
    text-align: center;
}
 nav a{
    color: rgb(5, 148, 22);
    text-decoration: none;
    margin: 15px;
    font-weight: bold;
 }
 nav a:hover{
    color: #d4e4ff;
 }
 aside{
    margin: 50px;
    font-size: 1.5em;
 }
 article.layout{
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
 }
 article.gallery{
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
 }
 /* new container fpr image + text */
 .image-container{
    position: relative;
 }
 .image-container img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 4px solid#0038b8;
    display: block;
 }
 /* text overlay  */
 .image-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    font-weight: bold;
    z-index: 2;
    background-color: rgba(  171, 173, 176, 0.299);
    padding: 10px 20px;
    border-radius: 25px;
    border:2px solid grey ;
 }
 .image-container img:hover{
    transform: scale(1.05);
    transition: 0.3s;
}
footer{
    background-color: #f0ee77;
    color: rgb(12, 92, 8);
    text-align: center;
    padding: 20px;
}