html, body {
    height: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
}

#title {
    text-align: center;
    font-size: x-large;
}

.h2{
    font-size: larger;
    background-color: #3BAFFA;
}

label{
    width: 100%;
    margin: 0 20px;
}

.text {
    width: 40px;
    font-size: larger;
    border: solid 1px lightgray;
    border-radius: 5px;
}

.submit {
    font-size: large;
    border: solid 1px lightgray;
    border-radius: 5px;
    width: 100px;
    height: 40px;
}

.submit:hover {
    background-color: #3BAFFA;
}

.mui-switch {
    width: 40px;
    height: 24px;
    position: relative;
    border: 1px solid lightgray;
    background-color: #fdfdfd;
    box-shadow: #3BAFFA 0 0 0 0 inset;
    border-radius: 24px;
    background-clip: content-box;
    display: inline-block;
    -webkit-appearance: none;
    user-select: none;
    outline: none;
}
.mui-switch:before {
    content: '';
    width: 24px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 24px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.mui-switch:checked:before {
    left: 20px;
}
.mui-switch.mui-switch-anim {
    transition: border cubic-bezier(0, 0, 0, 1) 0.4s, box-shadow cubic-bezier(0, 0, 0, 1) 0.4s;
}
.mui-switch.mui-switch-anim:before {
    transition: left 0.3s;
}
.mui-switch.mui-switch-anim:checked {
    box-shadow: #3BAFFA 0 0 0 12px inset;
    background-color: #3BAFFA;
    transition: border ease 0.4s, box-shadow ease 0.4s, background-color ease 1.2s;
}
.mui-switch.mui-switch-anim:checked:before {
    transition: left 0.3s;
}

