/* RESET / BASE */
body {
    margin: 0;
    font-family: sans-serif;
}

/* LINKS */
a {
    color: blue;
}

/* HEADER IMAGE */
.header {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* LINKS ON IMAGE */
.header-links {
    position: absolute;
    bottom: 10px;
    left: 20px;
}

.header-links a {
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 2px black;
    display: block;
}

/* LOGIN SCREEN */
.login-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container form {
    text-align: center;
}

/* CONTENT */
.content {
    padding: 20px;
}

/* BUTTONS */
button {
    cursor: pointer;
}