* {
    font-family: 'Source Sans Pro', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
}

label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    margin-top: 15px;
}

input:not([type="submit"]) {
    width: 300px;
    border: none;
    border-bottom: 2px solid white;
    background-color: #1f1f1f;
    padding: 14px 17px 16px;
    font-size: 20px;
    outline: none;
    color: white;
    border-radius: 0;
}

.top-menu {
    width: 100%;
    height: 100px;
    background-color: #0096cd;
}

.header-wrapper {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 100px;
    height: 100px;
    display: flex;
    vertical-align: center;
}

.top-menu img {
    width: 400px;
    max-width: 100%;
}

.wrapper {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    text-align: center;
    padding: 60px 30px;
}

p, label, ul, li {
    font-size: 20px;
}

.desc {
    margin-bottom: 60px;
}

ul {
    text-align: left;
    display: inline-block;
}

h2.error {
    color: #dd0000;
}

input[type="submit"] {
    appearance: none;
    padding: 16px 20px;
    background-color: white;
    color: black;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-top: 30px;
    border-radius: 0;
}

h1 {
    margin-top: 0;
}

.fett {
    font-size: 25px;
}

b:not(:first-of-type) {
    display: inline-block;
    margin-top: 10px;
}

a {
    color: white;
    transition: color .5s;
    font-weight: bold;
}

a:hover {
    color: lightgrey;
}

@media (max-width: 600px) {
    .top-menu {
        height: 70px;
    }

    .wrapper {
        padding: 15px;
    }

    .header-wrapper {
        line-height: 70px;
        height: 70px;
    }

    .top-menu img {
        width: 250px;
    }

    input:not([type="submit"]) {
        width: 100%;
        box-sizing: border-box;
    }

    input[type="submit"] {
        margin-top: 15px;
    }

    .desc {
        margin-bottom: 30px;
    }
}