
@charset "UTF-8";

body{
    font-family: 'AR One Sans';
    margin: 0;
    background-color: rgb(255, 255, 255);
}

quote {
    display: block;
    padding: 20px;
    font-family: 'AR One Sans';
    font-size: 1.25rem;
    line-height: 1.6;
    color: #000000;
    background-color: #f9f9f9;
    border-left: 5px solid #000000;
    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: 'AR One Sans';
}


h2 {
font-family: 'AR One Sans';
}


/*navigation*/

nav {
    background-color: #000000;
}

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: #000000;
}

/*separation for home link*/

.home {
    border-right: 3px solid white;
    margin-right: 10px;
}

/* aside section */

aside {
    float: left;
    width: 500px;
    margin-right: 20px;
    border-radius: 20px;
    border: 2px solid #000000;
    box-shadow: 5px 5px 10px #000000;
}

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;
}

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: #000000;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #000000;
}

/*footer*/

footer {
    background-color: #000000;
    color: #eee;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
}