// Alles auf null setzen

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgba(73, 24, 24, 1.0);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: white;
}

header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(96, 31, 31, 1.0);
    height: 6rem;
}

#headerPic {
    width: 4rem;
    height: 4rem;

}

#headerText {
    font-size: 3rem;
    margin-left: 1rem;
}

article {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
}

form {
    margin-top: 3em;
}

input {
    font-size: 1.2em;
}

video {
    margin-top: 3rem;
    width: 80%;
    height: 45%;
}

article div {
    color: rgba(200, 200, 200, 1.0);
    margin-top: 3rem;
}

a, a:visited {
    color: rgba(59, 100, 204, 1);
}

a:hover {
    color: rgba(113, 143, 218, 1);
}
