html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    font-family: "Noto Sans", sans-serif;
    margin: 0;
    background-color: #4c5c68;
    color: #dcdcdd;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #46494c;
    padding: 5px;
    color: white;
    position: sticky;
    top: 0;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    z-index: 10000;
}

main {
    flex: 1;
}

footer {
    background: #46494c;
    text-align: center;
    min-height: 3vh;
}

.logo img {
    max-width: 3.2rem;
    margin: 10px 10px 0;
    position: relative;
    bottom: 0.3rem;
}

.logo h1 {
    margin: 5px;
    color: #dcdcdd;
}

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

.navigation {
    grid-column: 8;
    display: flex;
    justify-content: end;
    align-items: center;
    font-size: 1.2rem;
}

.navigation a {
    color: white;
    margin-right: 10px;
}

.navigation a:hover,
.navigation a:focus {
    color: #1985a1;
    text-decoration: none;
}

article {
    display: flex;
    justify-content: center;

}

.paragraph1 {
    max-width: 30rem;
}

article img {
    max-width: 30rem;
    margin-top: 1rem;
}

.paragraph1 > p, .paragraph1 > h2 {
    margin: 1rem;
}



