body, html{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    background-color: black;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
    display: none;
}



.section{
    height: 100vh;
    width: 100%;
    background-color: black;
    color: white;
    margin: 0px;
    padding: 0px;
}

#content{
    height: 100%;
    width: 100%;
}

#content img{
    display: block;
    margin: 0px auto;
    max-height: 95vh;
    margin-top: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

#menu{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    list-style-type: none;
    background-color: black;
    margin: 0px;
}

#menu li{
    padding: 5px 15px;
}

#menu a{
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
}


#price h1{
    margin-top: 20px;
    text-align: center;
    font-size: 32px;
    width: 100%;
}

.table{
    display: flex;
    flex-flow: column nowrap;
    width: 60%;
    border-radius: 10px;
    border: 1px solid #2a602c;
    justify-self: center;
    box-shadow:0 0 10px #2a602c;


}

.row{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    font-size: 28px;
}

.row:nth-child(3):hover, .row:nth-child(4):hover, .row:nth-child(5):hover, .row:nth-child(6):hover{
    background-color: #424242;
    cursor: pointer;
}

.cell{
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 10px;
    font-size: 26px;
}


.floating_menu_1{
    display: flex;
    flex-flow: column wrap;
    position: absolute;
    top: 140%;
    right: 20px;
}

.floating_menu_2{
    display: flex;
    flex-flow: column wrap;
    position: absolute;
    top: 240%;
    right: 20px;
}

.floating_menu_1 a, .floating_menu_2 a{
    text-decoration: none;
}

.tooltip{
    position: relative;
}

.tooltip_1:before{
    content: attr(data-text);
    position: absolute;
    top:-20%;
    transform:translateY(-50%);
    right:0;
    width:auto;
    padding: 10px;
    border-radius:10px;
    background:#153125;
    color: #fff;
    text-align:center;
    display:none;

}

.tooltip_2:before{
    content: attr(data-text);
    position: absolute;
    bottom:-80%;
    transform:translateY(-50%);
    right:0;
    width:auto;
    padding: 10px;
    border-radius:10px;
    background:#153125;
    color: #fff;
    text-align:center;
    display:none;

}

.tooltip:hover:before {
    display:block;
    font-size: 24px;
  }