* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

body {
    background-color: #1a1a1a;
    color: #e8e8e8;
    font-family: 'Georgia', 'Times New Roman', serif;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    padding-top: 8rem;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    max-width: 800px;
    width: 100%;
    position: relative;
}

.content {
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.content p {
    margin-bottom: 1.5rem;
}

.intro em {
    font-style: italic;
}

.cta {
    margin-top: 2rem;
}

.logo {
    position: absolute;
    bottom: 4rem;
    color: #888;
    opacity: 0.7;
    cursor: pointer;
    transform-origin: center center;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo svg {
    display: block;
    width: 120px;
    height: auto;
    transform-origin: center center;
}

.logo svg path {
    transition: fill 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    fill: #888;
}

.logo:hover svg path {
    fill: #999;
}

@media (max-width: 768px) {
    .content {
        font-size: 1rem;
    }
}

