* {
    transition: 0.5s;
}

#navbar {
    background-color: white;
    box-shadow: black 0 0 20px;

    z-index: 10;
    position: fixed;
    width: 100%;

    font-size: x-large;
    font-family: "Segoe UI Light", sans-serif;
}

#navbar div div {
    margin-top: 10px;
}

#navbar div h2 {
    margin-top: 10px;
    text-shadow: black 0 0 1px;
}

.navbar-button {
    color: black;
}

.navbar-button:hover {
    text-decoration: none;
    text-shadow: 0 0 2px black;
}

#banner {
    background: url("/static/Banner.jpg") center center;
    background-size: cover;
}

#banner .container {
    display: flex;
}

#banner-thumbnail {
    margin-top: 20px;
    margin-bottom: 20px;
}

#banner-description {
    background-color: rgba(255, 255, 255, .8);
    font-size: large;

    padding: 20px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);

    box-shadow: black 0 0 10px;
    border-radius: 3px;
}

@media (max-width: 991px) {
    #banner .container {
        display: block;
    }

    #banner-description {
        transform: none;
        margin-bottom: 20px;
    }
}

#background {
    background-size: cover;
    background: url("/static/Background Home.jpg") no-repeat center center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -1;
    top: 0;
}

.sm-desc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    font-size: large;
    font-family: "Segoe UI", sans-serif;
}

#suggest-button {
    color: black;
}

#stats {
    padding: 0;
    margin-top: 20px;
    color: white;
}

#stats .col-md-3 {
    color: black;
    font-size: large;

    margin-bottom: 20px;
}

#stats .col-md-3 img {
    max-height: 250px;
}

#stats .col-md-9 {
    font-size: xx-large;
    font-family: "Segoe UI Light", sans-serif;
}

#footer {
    background-color: rgba(26, 31, 41, .8);
    margin-top: 20px;

    padding-top: 20px;
    padding-bottom: 15px;

    color: #aaa;

    box-shadow: 0 0 10px black inset;
}