@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato";
}

body {
    background-color: #e4e3ec;
}

header {
    background-color: #373643;
    padding: 1.2rem;
    position: relative;
}

.nav-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding-left: 5%;
    max-width: 100%;
}

.nav-links li {
    padding-right: 5rem;
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 4px 4px 6px rgb(0, 0, 0, 1);
    padding: 0.3rem 0.7rem 0.4rem 0.5rem;
}

.nav-links li img {
    height: auto;
    width: 2em;
    vertical-align: -35%;
    margin-right: 0.2em;
}

.nav-links a:hover {
    background-color: #4c4a5c;
    box-shadow: 2px 2px 4px rgb(0, 0, 0, 0.5);
    border-radius: 5px;
}

.nav-links a:active {
    background-color: #373643;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.title img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 200px;
}

.title h1 {
    position: absolute;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    font-size: 3rem;
}

footer {
    position: relative;
    background-color: #373643;
    padding: 1.2rem;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
}