@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: "Space Mono", monospace;
    font-size: 16px;
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
}

header {
    color: white;
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 4rem;
    background: transparent;
    z-index: 1;
}

.landing {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    height: 100vh;
    padding: 0 4rem;
    overflow: hidden;
}

.landing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.landing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(1, 3, 27, 0.4));
    z-index: -1;
}
.landing p {
    font-size: 4rem;
    max-width: 26ch;
}

.landing #keyword {
    display: inline-block;
    width: 8ch;
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 15px;
    transition: opacity 0.25s ease-in-out;
}

.landing::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
    z-index: 2;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4rem 4rem 4rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    width: 100%;
    overflow: hidden;
}

.main h1 {
    font-weight: 400;
    font-size: 2.5rem;
    text-align: center;
    align-self: center;
    margin: 0 0 0 0;
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 15px;
}

.advisory-info {
    max-width: 70ch;
    margin-top: 2rem;
}

.advisory-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

footer {
    padding: 2rem 4rem;
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}