@charset "UTF-8";



body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color:  rgb(10, 228, 191);
    color: red;
}
quote {
    display: block;
    padding: 20px;
    font-family: 'Artifika';
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgb(10, 228, 191);
    background-color: rgba(218, 10, 10, 0.795);
    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: rgb(10, 228, 191);
    margin: 0;
    font-family: 'Artifika';
}
h2 {
    font-family: sans-serif;
}

/* Navigation */

nav {
    background-color: rgba(228, 17, 17, 0.795);
}
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:  rgb(10, 228, 191);
}

/* Seperation for Home Link  */
 
.home {
    border-right: 3px solid white;
    margin-right: 10px;
}

/* Aside Section */

aside {
    background-color: rgb(10, 228, 191);
    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);
    gap: 20px;
}
article.gallery {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
article {
    background-color:  rgb(10, 228, 191);
    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: rgba(173, 152, 120, 0.795);
    color: white;
    border: none;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: rgba(173, 152, 120, 0.795);
}
 article h1 {
    background-color: black;
}

/* Footer */

footer {
    background-color:  rgba(0, 0, 0, 0.795);
    color: #eee;
    text-align: center ;
    padding: 15px;
    margin-top: 10px;
}