@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@700&family=Roboto:wght@100;300;400;500;700;900&display=swap');

html {
    margin: 0;
    padding: 0;
    background-color:#d7f1fc;
}

body {
    position: relative;
    min-height: 100vh;
    width: 90%;
    margin: 0 auto;
    padding: 3rem;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4em;
    font-size: 18px;
}

main {
    padding-top: 4em;
}

h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 4rem;
    margin-top: 0;
    margin-bottom: 5rem;
    text-transform: uppercase;
}

a {
    color: black;
}

a img {
    width: 8em;
}

form {
    width: 50%;
    float: right;
    padding-bottom: 4em;
}

fieldset {
    width: 80%;
    border: none;
    padding: 0 0 20px 0;
}

legend {
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 15px;
}

label {
    display:inline-block;
    width: 100%;
    padding: 5px 0 5px 0;
    font-weight: 500;
}

.input,
select {
    width:100%;
    box-sizing: border-box;
    border: 1px solid black;
    background-color: transparent;
    padding: 18px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

.input:focus {
    border: 3px solid black;
}

input[type="radio"] {
    width: 10%;
}

.radiolabel {
    width: 50%;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.button {
    padding: 18px;
    background-color: black;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
}

.button:hover{
    opacity: 0.8;
    color: white;
}

.nav {
    display:block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-decoration: none;
    line-height: 80px;
    height: 80px;
}

.nav a {
    display: inline-block;
    line-height: 80px;
    vertical-align: middle;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    padding: 20px;
}

#logo:hover, .nav a:hover {
    opacity: 0.8;
}


#uitleg {
    width: 30%;
    float: left;
    padding-left: 8%;
}

footer {
    position:fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: black;
    color:#d7f1fc;
    font-size: 14px;
    text-align: center;
}