@charset "UTF-8";

body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #ffffff;
}
quote{
    display: block;     /*Makes it behave like a box instead of outline text*/
    padding: 20px;      /*Adds space inside box*/
    font-family: 'Artifika';       /*Sets your preferred font*/
    font-size: 1.25rem;     /*Adjusts the size (approx 20px)*/
    line-height: 1.6;       /*Improves readability*/
    color: black;      /*Dark Grey text color*/
    background-color: white;        /*Light background makes the quote pop*/
    border-left: 5px solid black;       /*Adds a decorative side bar*/
    margin: 20px 0;     /*Adds space above and below the quote*/
}
header img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
h1{
    text-align: center;
    padding: 20px;
    background-color: white;
    margin: 0;
    font-family: 'Artifika';
}
h2{
    font-family: 'Artifika';
}

/*Navigation*/

nav{
    background-color: white;
}
nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav li{
    padding: 15px 20px;
}
nav a{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
nav li:hover{
    background-color: black;
}

/*Separation for Home Link*/

.home{
    border-right: 3px solid white;
    margin-right: 10px;
}

/*Aside Section*/

aside{
    background-color: white;
    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 white;
    box-shadow: 5px 5px 10px white;
}
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: white;
    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: black;
    color: white;
    border: none;
    cursor: pointer;   
}
input[type="submit"]:hover{
    background-color: black;
}

/*Footer*/

footer{
    background-color: black;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
}

