body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(83, 180, 241);
}
quote{
    display: block;
    padding: 20px;
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: hotpink;
    background-color:rgb(70, 136, 176) ;
    border-left: 5px solid rgb(0, 100, 241);
    margin: 20px 0;
}
h1{
    font-family: 'Alfa Slab One';
}
header img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
nav{
    background-color: hotpink;
    padding: 15px;
    text-align: center;
}
nav a{
    color:rgb(83, 180, 241) ;
    text-decoration: none;
    margin: 15px;
    font-weight: bold;
}
nav a:hover{
    color: rgb(0, 100, 241);
}
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;
}
.image-container{
    position: relative;
}
.image-container img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 4px solid rgba(0, 0, 0, 0.533);
    display: block;
}
.image-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:rgb(83, 180, 241) ;
    font-size: 3em;
    font-weight: bold;
    z-index: 2;
    background-color: hotpink;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid gray;
}
.image-container img:hover{
    transform: scale(1.05);
    transition: 0.3s;
}
footer{
    background-color: hotpink;
    color: rgb(83, 180, 241);
    text-align: center;
    padding: 20px;
}