body {
    background: url(imgs/bg.gif) no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'Permanent Marker';
    overflow: hidden;
}


.top-bar {
    height: 50px;
    width: 100%;
    background-color: #d52bffad;
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    user-select: none;
}

.navigation ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
}

.navigation li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid #fff;

    font-size: .9em;


    /* 100 / 7 */
    width: 14.2%;

    height: 100%;
    cursor: pointer;
}

.navigation li:hover {
    a {
        color: #000000;
    }
}

/* Remove border for the last item for that good look */
.navigation li:last-child {
    border-right: none;
}

.main-content {
    overflow: hidden;
    height: 450px;
    margin-bottom: 30px;
    width: 800px;
    background-color: #e0e0e083;
}

.panel {
    height: 450px;
    width: 800px;
}

.scrollContainer {
    position: relative;
    margin-left: 0;
    /* 800 * 7 */
    width: 5600px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: margin-left 1s;
}

#home {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    .title {
        font-size: 2em;
        color: #000;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        width: 100%;
        gap: 1em;
    }

    ol {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1em;
        padding-left: 0;
    }
}

#nicknames {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    ol {
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1em;
        padding-left: 0;
    }
}

#bfriends {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    ol {
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1em;
        padding-left: 0;
    }
}

#games {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    p {
        text-align: center;
    }

    ol {
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0.2em;
        padding-left: 0;
    }
}

#songs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    ol {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1em;
        padding-left: 0;
    }
}

#calendar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.credit {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-right: .5em;
    padding-bottom: .5em;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #000;
    text-decoration: none;
}
.selected a {
    color: #ffffff;
}
