@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
        "hd hd hd hd hd hd hd hd hd"
        "mn mn mn mn mn mn mn sb sb"
        "ft ft ft ft ft ft ft ft ft";
    min-height: 100vh;
    color: #fff;
}

.header {
    display: flex;
    height: 15vh;
    grid-area: hd;
}

/* Navbar Style */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row;
    height: 100%;
    background-color: #0000E0;
    padding-inline: 1.5rem;
    position: fixed;
    height: 15vh;
    width: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    flex-flow: row;
}

.navbar .navbar-logo:hover,
.navbar .navbar-logo:focus {
    text-decoration: none;
}

.navbar-logo-image {
    width: 64px;
    height: 64px;
    margin-right: 1rem;
}

.navbar-logo-caption {
    position: absolute;
    left: -9999px;
}

.navbar-logo-text {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.navbar-list {
    list-style: none;
    display: flex;
    flex-flow: row;
    align-items: center;
    padding: 0;
}

.navbar-item {
    font-size: 1.5rem;
    display: inline;
    margin-inline: 2rem;
}

.navbar a {
    text-decoration: none;
    color: #fff;
}

.navbar a:hover,
.navbar a:focus {
    color: hsl(0, 0%, 75%);
    text-decoration: underline;
}
/* End Navbar Style */

.main {
    grid-area: mn;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background-color: #333;
    padding: 2rem;
}

.sidebar {
    grid-area: sb;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background-color: #555;
}

/* Footer Style */
.footer {
    grid-area: ft;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
    background-color: #111;
}
/* End Footer Style */