body {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    margin: 0;
}

h1 {
    text-align: center;
    font-weight: 300;
    font-size: 3rem;
}

h2 {
    font-weight: 300;
    font-size: 2rem;
    margin: .5rem 0;
}

p {
    margin: 0;
}

img {
    max-width: 400px;
    width: 100%;
}

.wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: none;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.design, .art {
    a {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        text-decoration: none;

        * {
            color: black;
        }
    }
}

.design a {
    align-items: end;
    text-align: end;
}

.art a {
    align-items: start;
    text-align: start;
}

@media (max-width: 1200px) {
    .wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 2rem;
        max-width: 600px;
    }

    .design a {
        align-items: center;
        text-align: center;
    }

    .art a {
        align-items: center;
        text-align: center;
    }
}