header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    height: 8vh;
    background-color: black;
}

header i {
    font-size: 2rem;
    color: white;
}

header i:hover {
    cursor: pointer;
    filter: brightness(80%);
    transform: scale(1.3);
    transition: transform 0.3s;
}

nav {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    height: 10vh;
}

#nav-left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

#nav-left a {
    text-decoration: none;
}

h1 {
    font: small-caps bold 2.5rem 'Trebuchet MS', sans-serif;
    color: black;
}

h1:hover {
    cursor: pointer;
    color: silver;
    transition: color 0.3s;
}

#nav-right {
    display: none;
}

#nav-right p {
    font: small-caps 1.25rem 'Trebuchet MS', sans-serif;
}

#nav-right p:hover {
    cursor: pointer;
    color: silver;
    transition: color 0.3s;
}

#nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    font-size: 2.5rem;
}

main {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: hidden;
}

main img {
    width: 100vw;
    height: auto;
    object-fit: cover;
}

section {
    width: 90vw;
    margin: 1rem auto;
}

h2 {
    font: small-caps 1.5rem 'Trebuchet MS', sans-serif;
    text-align: center;
    margin-bottom: 0.5rem;
}

section p {
    text-align: center;
}

@media all and (min-width: 768px) {
    #nav-right {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-grow: 3;
    }
    #nav-menu {
        display: none;
    }
    main {
        justify-content: center;
    }
    main img {
        width: 50vw;
    }
}

@media all and (min-width: 992px) {
    main img {
        width: 25vw;
    }
}