
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Work Sans', sans-serif;
    background: url('../assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    padding-left: 50px;
    color: #097dea;
    font-size: 24px;
    font-weight: 700;
    user-select: none;
    pointer-events: auto;
}

.header a {
    color: inherit;
    text-decoration: none;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80%;
    text-align: center;
    color: white;
    flex-direction: column;
}

.content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0;
}

.content h1 + h1 {
    margin-top: 48px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #097dea;
    padding: 10px;
    font-size: 14px;
}

.footer a {
    color: #097dea;
    text-decoration: none;
}