/*Set general margin and paddings and set the body*/
* {
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#logo {
    height: 120px;
}

header {
    background-color: #432818;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form {
    font-size: large;
    line-height: 30px;
    margin-left: 20px;
    width: 220px;
}

label, input {
    margin-left: 20px;
}

button {
    margin-left: 80px;
}