* {
    font-family: sans-serif;
}
body{
    margin: 0px;
}
.background{
    position: fixed;
    z-index: -1;
    transform: scaleX(-1);
    min-width: 100vw;
    min-height: 100vh;
}
.centered{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: auto;
    background-color: rgb(24,80,30);
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
}
.options{
    width: 90%;
    background-color: rgb(140, 200, 180);
    padding: 20px;
    margin: 0px;
    margin-top: 30px;
    font-size: 1.25em;
    display: flex;
    flex-direction: column;
}
.topOptions{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 500px){
    .topOptions{
        flex-direction: column-reverse;
    }
    #regen{
        margin-bottom: 15px;
    }
}
hr{
    width: 100%;
}

#regen{
    font-size: 0.75em;
}
.image{
    align-self: center;
}

.bottomOfPage{
    width: 90%;
    padding: 20px;
    margin:0px;
    margin-bottom: 30px;
    background-color: rgb(140, 200, 180);
}
.image{
    padding: 20px;
    background-color: rgb(140, 200, 180);
    width: 90%;
}

.holdButtons{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 680px){
    .holdButtons{
        flex-direction:column;
    }
}


