body {
    background: var(--bg);
}

.wrapper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

main {
    display: grid;
    place-items: center;
    align-content: center;
    height: 100%;
    font-size: 50px;
    color: var(--text);
}

main p {
    font-weight: lighter;
    font-size: 20px;
}

main a {
    font-size: 20px;
    margin-top: 50px;
}

footer {
    padding: 20px 0;
    color: var(--text);
    width: 100%;
    background: var(--bg);
}

@media (width <= 900px) {
    main {
        font-size: 20px;
        width: 90%;
        margin: 0 auto;
    }
}