body{
    background-color: rgb(56, 64, 71);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow-wrap: anywhere;
    margin: 0px;
    background-image: url(dsta_calculator_bg.png);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

#dstaLogo{
    width: 20rem;
    border: 5px solid black;
    border-radius: 40px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

mark{
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 1);
    color: white;
    font-weight: bold;
    border-radius: 10px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.center{
    align-items: center;
    text-align: center;
    justify-content: center;
}

#title{
    color: white;
    font-size: 3rem;
}

#notice{
    color: white;
}

h1{
    font-size: 2.2rem;
}

#dstaWarning mark{
    font-size: 1.4rem;
}

h3{
    font-size: 1.8rem;
}

label{
    font-size: 1.3rem;
}

input[type="radio"]{
    width: 20px;
    height: 20px;
}

input[type="number"]{
    font-size: 1.3rem;
    width: 100px;
}


#cascadeExitSelection h4{
    font-size: 1.25rem;
}

#calcResult h3{
    font-size: 1.2rem;
}

.yellowText{
    color: yellow;
    font-size: 1.75rem;
}

button{
    font-weight: bold;
    font-size: 1.4rem;
    color: rgb(255, 255, 255);
    background-color: rgb(185, 0, 158);
    border: 3px solid black;
    border-radius: 20px;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
button:hover{
    background-color: rgb(158, 0, 134);
}
button:active{
    background-color: rgb(122, 0, 104);
}


dialog .wrapper{
    padding: 16px;
    justify-content: center;
    align-items: center;
    text-align: center;  
}
dialog{
    /* remove scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    border: 5px solid rgb(20, 3, 45);
    background-color: rgb(47, 3, 77);
}
/* remove scrollbar */
dialog::-webkit-scrollbar {
    display: none;
}

a{
    color: rgb(255, 0, 216);
    font-weight: bold;
}
a:hover{
    color: rgb(182, 0, 155);
}
a:active{
    color: rgb(150, 0, 127);
}