@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu Mono', monospace !important;
}

#container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: whitesmoke;
}

#content {
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: white;
    width: 60%;
    height: 80%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.inputdiv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 100px;
    margin:10px 0 10px 0;
}


#selectBox,#selectBox0{
    height: 30px;
    width:140px;
    margin: 5px;
    outline: none !important;
}

#state{
    margin: 2px;
}

#myButton1{
    padding: 5px;
    height: 100%;
    background-color: deeppink;
    border: none;
    color: white;
    border-radius: 5px;
}
#myButton1:hover {
    box-shadow: 0 0 2px 1px white;
}

#myButton1:active {
    box-shadow: inset 1px 1px 2px black;
}

#myButton {
    padding: 5px;
    height: 100%;
    background-color: deeppink;
    border: none;
    color: white;
    border-radius: 5px;
}

#myButton:hover {
    box-shadow: 0 0 2px 1px white;
}

#myButton:active {
    box-shadow: inset 1px 1px 2px black;
}

#name1, #name2, #name3, #name4 {
    margin: 20px;
    background-color: tomato;
    padding: 10px;
}

@media screen and (max-width:700px) {
    * {
        font-size: 18px;
    }
    #content {
        width: 90%;
        height: 90%;
    }
}