@import url(reset.css);
@import url(typography.css);
@import url(ui.css);


main {
    display: grid;
    max-width: 100%;
    min-height: 100dvh;
    place-content: center;
    background-image: linear-gradient(45deg, #ffffff 25%, #c5d6f0 25%, #c5d6f0 50%, #ffffff 50%, #ffffff 75%, #c5d6f0 75%, #c5d6f0 100%);
    background-size: 14.14px 14.14px;
}

.coming {
    background-color: white;
    border: 1px solid black;
    padding: 2rem;
    width: fit-content;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

#beta {
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:1rem;
    background-color: white;
    border: 1px solid black;
    margin-top:2rem;
    padding:1rem;
    border-radius: 1rem;

    p {
        grid-column: 1 / span all;
    }
}