/* This is the code for the style.css file, which defines the style of the web page */
.container, .containerlegend, .containerresults {
    width: 80%;
    margin: 0 auto;
    font-family: monospace;
    background: aliceblue;
    padding: 2em;
}

h1 {
    text-align: center;
    color: #028dd2;
}

h2{
    background: white;
    padding: 1em;
}

label {
    display: block;
    margin-top: 10px;
}

input {
    width: 100%;
    padding: 5px;
    border: 1px solid black;
}

input[type="submit"] {
    display: block;
    margin: 10px auto;
    background-color: blue;
    color: white;
    cursor: pointer;
}

.containerresults{
	border-style: double;
    border-color: white;
    margin-top: 4em;
	font-size:1.4em;
}