/* <weight>: Use a value from 100 to 900 */
/* <uniquifier>: Use a unique and descriptive class name */
/* Noto Sans Font Styles */
.noto-sans-noto-sans-400 {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wght" 400;
}

body {
    /* Color: Midnight  */
    background-color: rgb(31, 45, 51);
    /* Color: Ivory Sand */
    color: rgb(255, 244, 229);
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    font-family: "Noto Sans", sans-serif;
}
/* Header Styles */
#header-main {
    /* Color: Teal Blue */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background-color: rgb(27, 109, 127);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;

}

.header-main-title {
    font-size: 2.5em;
    text-align: center;
    margin: 0;
}

.header-main-subtitle {
    text-align: center;
    font-size: 1.5em;
    margin: 0;
}
/* Navigation Styles */
#nav {
    position: absolute;
    top: 20vh;
    left: 0;
    width: 100%;
    height: 44px;
    /* Color: Deep Ocean */
    background-color: rgb(21, 76, 86);
    color: rgb(255, 244, 229);
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
}


.nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 20%;
    height: 100%;
}

.nav-list> li:hover {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: auto;
    width: 50%;
    height: 100%;
    cursor: pointer;
    background-color: rgb(27, 109, 127);
}

.nav-list> li {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-list> li > a {
    padding: auto;
    text-decoration: none;
    color: rgb(255, 244, 229);
    font-size: 1em;
}
/* Blog Styles */
#blog {
    position: absolute;
    top: 30vh;
    width: 50%;
    height: auto;
    left: 0px;
    padding: 20px;
    margin: 5% 2%;
    background-color: rgb(27, 109, 127);
    border: solid 5px rgb(21, 76, 86);
    color: rgb(255, 244, 229);
}

#sidebar {
    position: absolute;
    top: 30vh;
    right: 0px;
    width: 20%;
    height: auto;
    padding: 20px;
    margin: 5% 2%;
    background-color: rgb(27, 109, 127);
    border: solid 5px rgb(21, 76, 86);
    color: rgb(255, 244, 229);
}

.email {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
}

#email-icon {
    margin-right: 8px;
    margin-left: 0;
}

#email-text {
    margin-left: 8px;
    font-size: 1em;
}

#footer {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: rgb(90, 115, 129);
    color: rgb(255, 244, 229);
}