.homeButtons{
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 50px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 5px 5px 3px black;
    height: 43vh;
    width:49%

}
h1{
    text-align: center;
    font-size: 30px;
    background-color: #4CAF50;
    border-radius: 4px;
    box-shadow: 2px 2px 2px black;

}
body{
    background-color:#429444;
    font-size: 30px;;
}
.choices{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    width: 20%;
    background-color:#4CAF50;
    gap: 30px;
    box-shadow: 5px 5px 3px black;
    overflow-y: auto;
    padding-top: 20px;
}
.choiceBtns{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.choices button{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 80%;
    font-size: 20px;
    border-radius: 4px;
    background-color: #4adb4c;
    box-shadow: 6px 6px 3px black;
}
.slide{
    background-color: #4adb4c;
    box-shadow: 6px 6px 3px black;
    width:95%;
    border-radius: 5px;

}
.slidecontainer{
    width: 100%;
}
.slider{
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: gray;
    outline:none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 12px;
}
.slider:hover{
    opacity:1;
}
.pointers{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.left{
    text-align:left;
}
.middle{
    text-align: center;
    flex: 1;
}
.right{
    text-align: right;
}
#simCanvas{
    flex: 1;
    background: rgb(0, 193, 241);
}
.simulation{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}
.data-table{
    background-color: #4adb4c;
    box-shadow: 6px 6px 3px black;
    width: 95%;
    border-radius: 5px;
    padding: 15px;
}
.data-table h3{
    margin: 0 0 10px 0;
    text-align: center;
}
.data-table table{
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.data-table table tr{
    border-bottom: 1px solid #333;
}
.data-table table td{
    padding: 8px;
    text-align: left;
}
.data-table table td:last-child{
    text-align: right;
    font-weight: bold;
}
.rows{
    display: flex;
    flex-direction:row;
    -ms-flex-item-align: center;
    height:10vh;
}
.columns{
    display: flex;
    flex-direction:column;
    height:10vh;
}