@charset "UTF-8";

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

quote {
    display: block;
    padding: 20px;
    font-family: "Artifika";
    font-size: 1.25rem;
    line-height: 1.6;
    color: #7d2531;
    background-color: #f9f9f9;
    border-left: 5px solid #007bff;
    margin: 20px 0;
}

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: brown;
}

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: #005f8a;
}

/* 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 #c7c5c5;
    box-shadow: 5px 5px 10px #c7c5c5;
}

aside h2 {
    margin-top: 0;
}

/* Article Section */

article.layout {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

article.gallery {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

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: #0077b6;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #005f8a;
}

/* footer */

footer {
     background-color: #222;
    color: #eee;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
    }
