body {
    font-family: 'Alata';font-size: 20px;
    background-color: rgb(225,243,252);
    margin: 0 auto;
    width: 700px;
}
img{
    margin-left: 100px;
}

form {
    /* Center the form on the page */
    margin: 0 auto;
    width: 700px;
    /* Form outline */
    padding: 5px;
    border: 1px solid rgb(225,243,252);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

form li + li {
    margin-top: 1em;
}

input,
textarea,
select {
    /* To make sure that all text fields have the same font settings
       By default, textareas have a monospace font */
    font: 1em sans-serif;

    /* Uniform text field size */
    width: 400px;
    box-sizing: border-box;

    /* Match form field borders */
    border:1px solid black;
    padding: 5px;
    background-color:rgb(225,243,252);
}

input:focus,
textarea:focus {
    /* Additional highlight for focused elements */
    border-color: #000;
}

textarea {
    /* Align multiline text fields with their labels */
    vertical-align: top;

    /* Provide space to type some text */
    height: 5em;
}

.mybutton {
    font-weight: bold;
    padding: 20px;
    background:black;
    color: white;
    font-size: 20px;
    margin-left: 90px;
    margin-bottom: 15px;
}

button {
    /* This extra margin represent roughly the same space as the space
       between the labels and their text fields */
       padding: 10px;
}
.mybutton:hover{
    background-color:rgb(83, 92, 104);
}

fieldset {
    border: 0px solid;
    margin: 5px;
    text-align: left;
}

legend {
    color:black;
    border-color: rgb(225,243,252);
}

input[type=radio] {
    width: 15px;
    margin-left: 220px;
}

.radiotitel {
    display: block;
    width: 200px;
    text-align: right;
    font-weight: bold;
    padding: 5px;
    display: block;
    text-align: left;
    font-weight: bold;
    padding-left: 70px;
}

.radiolabel {
    display: inline-block;
    text-align: left;
    font-weight: bold;
    padding: 5px;
}
label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;
    padding-left: 70px;
}

input, select {
    margin: right;
    width: 70%; 
    padding: 8px; 
    margin-bottom: 10px; 
    margin-left: 70px;
}
p{
    text-align: center;
}