@charset "UTF-8";
body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: blanchedalmond;
}
quote{
    display: block;
    padding: 20px;
    font-family: Artifika;
    font-size: 1.25rem;
    line-height: 1.6;
    color: darkred;
    background-color: aliceblue;
    border-left: 5px solid silver;
    margin: 20px 0;
}
header img{
    width: 100%;
    height: 200px;
    object-fit:cover;
}
h1{
    text-align: center;
    padding: 20px;
    background-color: rgb(157, 224, 255);
    margin: 0;
font-family: 'Times New Roman', Times, serif;
}
h2{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
}
/*Navigation*/

nav{
    background-color: rgb(94, 4, 4);
}
nav ul{
    list-style:none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav li{
    padding: 15px 20px;
}
nav a{

    color: salmon;
    text-decoration: none;
    font-weight: bold;
}
nav li:hover{
    background-color: khaki;
}
/*separation for home link*/
.home{
    border-right: 3px solid white;
    margin-right: 10px;
}
/*aside section*/
aside{
    background-color: azure;
    padding: 20px;
    overflow: auto;
    line-height: 1.2em;
    font-size: 1.5em;
}
aside img{
    float: left;
    width: 500px;
    margin-right: 20px;
    border-radius: 20px;
    border: 2px solid palevioletred;
    box-shadow: 5px 5px 10px green;
}
aside h2{
    margin-top:0;
}
/*article section*/
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;
}
article{

    background-color: rgb(86, 193, 255);
    padding: 20px;
    margin-top: 10px;
}
form{
    display: flex;
    flex-direction: column;
    max-width: 500px;
}
label{
    margin-top: 10px;
    font-weight: bold;
}
input,select,textarea{
    padding: 8px;
    margin-top: 5px;
}
input[type="submit"]{
    margin-top: 15px;
    background-color: blueviolet;
    color: white;
    border: none;
    cursor: pointer;
}
input[type="submit"]:hover{
    background-color: goldenrod;
}
/*footer*/
footer{
    background-color: rgb(73, 20, 20);
    color: rgb(255, 102, 96);
    text-align: center;
    padding: 15px;
    margin-top: 10px;
}