:root {
    --color-almost-white: #f9f9f9;
    --color-light-black: #333333;
    --color-black: #000000;
    --color-transparent: transparent;
}

/* Reset some basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--color-almost-white);
}

/* Skip to content button */
.skip-to-content {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-light-black);
    color: var(--color-almost-white);
    padding: 10px;
    z-index: 100;
    text-decoration: none;
    transform: translateY(-100%);
    transition: transform .3s;
}

.skip-to-content:focus {
    transform: translateY(0);
}

/* Full width and height layout */
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: 20px;
}

/* Logo styling */
.header-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    width: 400px;
}

/* Text styling */
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    line-height: 1.3;
    max-width: 700px;
    margin-bottom: 20px;
}

.header-footer {
    margin-top: 50px;
}

.header-footer p {
    color: var(--color-light-black);
    font-size: 0.8rem;
    margin: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-logo {
        width: 300px;
    }
}
