html {
    background-image: url("../assets/zealbg.gif");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

body {
    display: flex;
    margin: 0;
}

#left {
    flex: 1;
    height: fit-content;
    margin: 20px;
    padding: 20px;
    box-sizing: border-box;

    color: white;
    background-color: rgba(0, 0, 0, 0.8);
}

#right {
    flex: 2;
    display: flex;
    justify-content: center;
}

#fg {
    width: auto;
    height: 60vw;
    margin-top: 6vw;
}

.section {
    padding-bottom: 20px;
}

/* smaller screens only */
@media screen and (max-width: 1100px) {
    body {
        flex-direction: column;
    }

    #right {
        flex: 1;
    }

    #fg {
        width: 100%;
        height: auto;
        margin: 20px 20px 0 20px;
    }
}

/* element overrides */
a, a:visited, a:active {
    color: white;
}

li {
    margin-top: 20px;
}
