@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");

body {
    color: rgba(255, 247, 235, 0.95);
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    transition: background-color 0.5s ease;

    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 1.35rem;
    line-height: 130%;
}

#intro {
    position: absolute;
    top: 0;
    left: 0;
    padding: 80px;
    max-width: 480px;

    @media (max-width: 600px) {
        padding: 24px;
    }
}

#links {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 80px;

    @media (max-width: 600px) {
        padding: 24px;
    }

    a {
        margin-right: 8px;
    }

}

h1,
h2 {
    font-weight: 500;
    font-size: 1.35rem;
    line-height: 130%;
}

h1 {
}

h2 {
    opacity: 0.5;
}

a {
    color: rgba(255, 247, 235, 0.95);
    text-decoration: none;
    opacity: 0.5;

    &:hover {
        text-decoration: underline;
        opacity: 1;
    }
}
