html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
    margin-top: 0px;
    padding-top: 0px;
    width: 100%;
    height: 100%;
    background: #D1CCC4;

}

#navbar {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    /* Set the navbar to fixed position */
    top: 0;
    /* Position the navbar at the top of the page */
    width: 100%;
    /* Full width */
}

#navbar ul {
    display: flex;
    margin: 0;
    padding: 30px;
    list-style-type: none;
    text-align: center;
    background-color: #D1CCC4;

}

#navbar ul li {
    width: 100%;
    font-family: Helvetica, sans-serif;
    border: 1px dashed rgba(255, 255, 255, 0);

}

#navbar ul li a {
    text-decoration: none;
    padding: 5% 30%;
    color: #fff;
    background-color: #7a8486;

}

#navbar ul li a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
}

.active {
    color: #D1CCC4;
}

section.active {
    visibility: visible;
    scroll-snap-align: start;
}

.container {
    position: relative;
    text-align: center;
    color: white;
}

.bottom-left {
    font-family: 'GlacialIndifferenceBold';
    font-weight: large;
    font-size: 160%;
    color: #3e4446;

    position: absolute;
    bottom: 22%;
    left: 18.6%;
    background: #D1CCC4;
    padding: 5px;
}

.bottom-left:hover {
    background-color: #e0dbd1;
}

.Pictionary {
    font-family: 'GlacialIndifferenceBold';
    font-weight: large;
    font-size: 160%;
    color: #3e4446;

    position: absolute;
    bottom: 22%;
    left: 48%;
    background: #D1CCC4;
    padding: 5px;
}

.Pictionary:hover {
    background-color: #e0dbd1;
}

.get-help {
    font-family: 'GlacialIndifferenceBold';
    font-weight: large;
    font-size: 160%;
    color: #3e4446;

    position: absolute;
    bottom: 22%;
    left: 74%;
    background: #D1CCC4;
    padding: 5px;
}

.get-help:hover {
    background-color: #e0dbd1;
}