body {
    font-family: Trebuchet MS, sans-serif;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    background-color: #454545;
    overflow: hidden;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    background-color: #454545;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 7vh;
    line-height: 7vh;
}

.nav-bar {
    text-align: center;
    margin: 0;
    padding: 0 10px 0 10px;
    height: 100%;
}

header a {
    color: #454545;
    font-size: 3vh;
    text-decoration: none;
}

#home-logo-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}

#home-logo {
    height: 55%;
}

#mute {
    z-index: 100;
    margin-left: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#mute-button {
    margin: 0;
    height: 70%;
    width: auto;
    display: block;
}

#light-mode-switch {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#light-mode {
    margin: 0;
    height: 70%;
    width: auto;
    display: block;
}

#home {
    overflow: hidden;
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 93vh;
}

@keyframes home-background-anim {
    from {
        filter: brightness(100%) blur(0px);
    }

    to {
        filter: brightness(40%) blur(5px);
    }
}

#home-background {
    width: 105%;
    height: auto;
    margin: -140px -10px -140px -10px;

    animation-name: home-background-anim;
    animation-duration: 3s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes home-title-anim {
    from {
        filter: opacity(0%);
        top: 60%;
    }

    to {
        filter: opacity(100%);
        top: 40%;
    }
}

#home-title {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    filter: opacity(0%);
    color: #ffffff;
    width: 50vw;

    animation-name: home-title-anim;
    animation-duration: 3s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

@keyframes home-search-bar-anim {
    from {
        filter: opacity(0%);
        top: 85%;
    }

    to {
        filter: opacity(100%);
        top: 65%;
    }
}

#search-bar-container {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: opacity(0%);
    font-size: 12px;

    animation-name: home-search-bar-anim;
    animation-duration: 3s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

#search {
    width: 20vw;
    text-align: center;
}

#search-button {
    color: #ffffff;
    background-color: rgba(183, 183, 183, 0.35);
    margin: 3px;
    padding: 5px;
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

#search-button:active {
    position: relative;
    top: 1px;
}

#search-button:hover {
    background-color: rgba(210, 210, 210, 0.35);
}