#bar_icon {
    display: none;
    position: absolute;
    /*length of bars*/
    width: 30px;
    height: 30px;
    margin-left: 20px;
    margin-top: 20px;
    cursor: pointer;
}

#bar_icon div {
    display: none;
    width: 100%;
    /*Thickness of bars*/
    height: 2px;
    background-color: aliceblue;
    margin-left: auto;
    margin-right: auto;
}

.b2,
.b3 {
    margin-top: 20%;
}

.change .b1 {
    transition-duration: .2s;
    -webkit-transform: rotate(-135deg) translateY(1px) translateX(-9px);
    transform: rotate(-135deg) translateY(1px) translateX(-9px);
}

.change .b2 {
    opacity: 0;
}

.change .b3 {
    transition-duration: .2s;
    -webkit-transform: rotate(135deg) translateY(4px) translateX(-11px);
    transform: rotate(135deg) translateY(4px) translateX(-11px);
}

:not(.change) div {
    transition-duration: .1s;
}

.body_image {
    transition-duration: 1s;
}

@media (max-width: 900px) {
    #top {
        height: 100px;
    }
    /*INDEX*/
    #list {
        font-size: 30px;
        padding-left: 0;
        padding-right: 0;
        margin-right: auto;
        margin-left: auto;
    }
    #list div {
        margin-top: 2rem;
        display: none;
    }
    #bar_icon {
        display: block;
    }
    #bar_icon div {
        display: block;
    }
    #bottom {
        margin-top: 30px;
    }
    /*Image size*/
    #main {
        padding-bottom: 70%;
    }
    /*INFO*/
    #info_main {
        display: flex;
        flex-direction: column;
    }
    #info_bambaImage {
        margin-right: 0;
        flex: none;
        display: block;
        justify-content: center;
        align-items: center;
        overflow: auto;
        width: 400px;
        height: auto;
        margin-right: auto;
        margin-left: auto;
    }
    #info_bambaImage img {
        width: 100%;
        height: 100%;
    }
    /*Staff*/
    .staff_member {
        width: 100%;
        padding-bottom: 50%;
    }
    /*Events*/
    .event {
        flex-direction: column;
    }
    .event_name {
        font-size: 20px;
    }
    .event_desc {
        font-size: 14px;
    }
    .event_info {
        margin-left: auto;
    }
    /*Reserve*/
    form {
        width: 80%;
    }
    form input {
        margin-right: 0;
    }
}


}