body::-webkit-scrollbar {
    display: none;
}

#fixed-top {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

#fixed-top p {
    margin: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    cursor: pointer;
}

#menu-background {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.2s;
    transform: translateY(100%);
}

#menu-background.menu-open {
    opacity: 1;
    transition: opacity 0.3s;
}

#menu {
    position: fixed;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    height: 400px;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-top: solid black 2px;
    transform: translateY(402px);
    transition: transform 0.2s;
}

#menu.menu-open {
    display: flex;
    transform: translateY(0px);
    transition: transform 0.3s;
}

#menu p:first-child {
    margin-top: 20px;
}

#menu p {
    margin: 0;
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    cursor: pointer;
}

#menu p:hover {
    background-color: Gainsboro;
}

#menu img {
    width: 30px;
    height: 30px;
    pointer-events: none;
    margin-right: 10px;
}

#wrapper {
    padding-top: 90px;
    padding-bottom: 55px;
    width: 100%;
    min-height: calc(100vh - 145px);
    background-color: #eeeeee;
    font-size: 18px;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.container {
    max-width: 500px;
    width: 70vw;
    height: 100%;
    border-radius: 30px;
    background-color: #ffffff;
    margin-bottom: 30px;
    padding: 30px;
}

#fixed-bottom {
    position: fixed;
    bottom: 0;
    background-color: #ffffff;
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

#fixed-bottom p {
    width: 80px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#fixed-bottom img {
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.active {
    background-color: Gainsboro;
}