.landing-page {
    display: grid;
    grid-template-rows: 100px 1fr 100px;
    flex-shrink: 0;

    width: 100vw;
    height: 100vh;

    transition: margin-left 1s ease;
}

.landing-page.hidden {
    margin-left: -100vw;
}

.landing-welcome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;
    height: 100%;
}

.landing-welcome-container span.built-with-label {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 3rem;

    text-align: center;
    background-image: linear-gradient(167deg, rgba(31,92,37,1) 0%, rgba(31,31,85,1) 76%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-welcome-container span.jetpack-compose-label {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 6rem;

    text-align: center;

    color: rgba(78,78,215,1);
    background-image: linear-gradient(167deg, rgba(66,195,79,1) 0%, rgba(78,78,215,1) 76%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

button.goto-game-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    margin-top: 6rem;
    border: none;
    outline: none;

    padding: 0.4rem 0.8rem;

    border-radius: 0.2rem;

    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;

    cursor: pointer;

    background-color: #ecf1f6;
    color: black;

    transition: color 0.1s ease, background-color 0.1s ease;
}

button.goto-game-button:hover {
    background-color: #d0d8e0;
}

button.goto-game-button img {
    height: 2rem;

    transform: scaleX(-1);
}