@media only screen and (max-width: 600px) {
   
    #container{
        width: 90vw;
    }
  }
body{
    background-color: #F9F5F2;
    background-image: url('./background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    image-rendering: pixelated;
    margin: 0;
    border: 1px solid red;

}

*{
    font-family: 'Raleway', sans-serif;
}
nav ul li{
    list-style-type: none;
    display: inline-block;
    font-family: 'Raleway', sans-serif;
}
nav ul{
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-top: 10px;
    margin-left: 10px;
    
}
#logo{
    background-color: rgb(3, 3, 46);
    width: 100px;
    height: 30px;
    display: grid;
    place-content: center;
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    border-bottom: 3px solid #62c1d4;
    
}
#containerWrapper{
    display: grid;
    place-content: center;
    height: 95vh;
}
#container{
    min-width: 40vw;
    height: 60vh;
    border: 1px solid lightgray;
    background-color: rgb(243, 234, 229);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 20px;

}
#options{
    display: inline-block;
}
 button {
    background-color: crimson;
    border-color: crimson;
    color: white;
    border-radius: 5px;
    width: 110px;
    height: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;    
}
button:hover{
    box-shadow: 1px 1px 1px lightcoral;
    cursor: pointer;
}
.hide{
    display: none;
}
#modal{
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.89);
    display: none;
    place-items: center;
}
#modalContent{
    min-width: 40vw;
    max-width: 100vw;
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}
h3,h2{
    text-align: center;
    
    margin-right: 20px;
    margin-left: 20px;
}
#region{
    border: 1px solid lightgrey;
    border-radius: 5px;
    height: 30px;
    margin-bottom: 15px;
}
input[type='radio']{
    margin-bottom: 20px;
    text-align: left;
    -webkit-appearance: checkbox;
}
#results{
    font-size: 2em;
}
