body, html {
    margin: 0;
    height: 100%;
    padding: 0;
    font-family: Montserrat, sans-serif;
}

.container {
    position: absolute;
    width: 700px;
    /* height: 510px; */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, .3);
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.05), 2px 4px 10px 0 rgba(0, 0, 0, 0.1), 0 0 10px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid #34090f;
    top: calc(50vh - 450px);
    left: calc(50vw - 371px);
}

.browsererror {
    color: #ef476f;
    display: none;
}

.app {
    margin: 20px auto;
}

textarea {
    width: 80%;
}

hr {
    border-color: #000000;
}

button {
    padding: 10px;
    width: 100px;
    margin: 10px;
    font-family: Montserrat, sans-serif;
    border-radius: 5px;
    border: 1px solid #34090f;
    transition: all .3s;
    background-color: #ffdf95;
}

.horizontalcontainer button {
    margin-top: -80px;
}

button:hover {
    /* background-color: rgba(254, 227, 225, .1); */
    background-color: #62bec1;
    color: #ffffff;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.05), 2px 4px 10px 0 rgba(0, 0, 0, 0.1), 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

button.highlightbutton {
    background-color: #ffb759;
}

button.highlightbutton:hover {
    background-color: #ef476f !important;
}

.extreme button {
    width: 200px;
}

.high button {
    background-color: #ffdf95;
}

.low button {
    background-color: #ffb759;    
}

.extreme button:hover {
    background-color: #62bec1;
}

a {
    color: #000000;
    transition: all .3s;
}

a:hover {
    color: #ef476f;
}