@charset "UTF-8";

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: rgb(0, 16, 247);
    color: white;
}

quote {
    display: block;
    padding: 20px;
    font-family: 'Artifika';
    font-size: 1.65rem;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0026ff;
    border-left: 5px solid rgb(43, 59, 155);
    border-right: 5px solid rgb(50, 71, 190);
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

header img {
    width: 100%;
    height: 200px;
    object-fit: fill;
}

h1 {
    padding: 20px;
    background-color: rgb(10, 40, 206);
    margin: 0;
    font-family: 'Artifika';
}

h2 {
    font-family: 'Artifika';
}

/* Navigation */
nav {
    background-color: #BA6974;
}

nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    border: 4px solid black;
    border-radius: 5px;
}

nav li {
    padding: 15px 20px;
    list-style: none;
    border-right: 2px solid black;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav li:hover {
    background-color: #505f8a;
}


nav li:first-child {
    border-left: 2px solid black;
  }
/* Separation for Home Link */
.home {
    border-right: 3px solid rgb(241, 241, 241);
    margin-right: 10px;
}

/* Aside */
aside {
    background-color: rgb(0, 16, 247);
    padding: 20px;
    overflow: auto;
    line-height: 1.2em;
    font-size: 1.5em;
}

aside img {
    float: center;
    width: 600px;
    margin-right: 20px;
    border-radius: 20px;
    border: 2px solid #ffffff;
    box-shadow:  5px 5px 10px #ffffff;
}

aside h2 {
    margin-top: 0;
}

/* Article */
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(0, 16, 247);
    padding: 20px;
    margin-top: 10px;
    color: white;
}
form {
    display: flex;
    flex-direction: column;
    width: 55%;
    box-sizing: border-box;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input,
select,
textarea {
    padding: 10px;
    margin-top: 10px;
    font-size: 20px;
}

input[type="submit"] {
    margin-top: 15px;
    background-color: #7bb4ff;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #1633d6;
}

/* footer */
footer {
    background-color: #000000;
    color: #eee;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
}