body, html {
    height: 100%;
    width: 100%;
    color: #fff;
    font-family: 'Lato', sans-serif;
    background: url('images/playhouse-background.webp') no-repeat center #000;
    background-size: cover;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

@media screen and (max-width: 900px) {
    body {
        font-size: 14px;
    }
}

.h, a {
    color: #e2e729;
}

.banner {
    position: absolute;
    top: 0;
    z-index: 0;
    height: 15%;
    width: 100%;
    background: #000;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner img {
    height: 40%;
}

main {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    background: #000;
    padding: 10px;
    margin-top: 100px;
    width: 100%;
    max-width: 1000px;
}

@media screen and (min-width: 900px) {
    main {
        width: 80%;
        padding: 40px 20px;
        margin-top: 50px;
    }
}

main p {
    margin: 0;
}

main .h {
    text-align: center;
}

main .links {
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media screen and (min-width: 900px) {
    main .links {
        flex-direction: row;
    }
}