* {
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

html {
    background: radial-gradient(#553960, #452f4e);
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 20px;
    line-height: 1.5rem;
}

@media only screen and (max-width: 1100px) {
    html {
        font-size: 18px;
    }
}

@media only screen and (max-width: 600px) {
    html {
        font-size: 16px;
    }
}

@media only screen and (max-width: 400px) {
    html {
        font-size: 14px;
    }
}

body {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 40rem) 1fr;
    grid-template-rows: auto;
    min-height: 100vh;
}
body::after {
    background: #ffffff;
    content: '';
    grid-column: 3;
}

@media only screen and (max-width: 1100px) {
    body {
        grid-template-rows: auto 1fr;
    }
    body::before {
        background: #ffffff;
        content: '';
        grid-column: 1;
        grid-row: 2;
    }
    body::after {
        background: #ffffff;
        content: '';
        grid-row: 2;
    }
}

header {
    align-items: end;
    grid-column: 1;
    justify-self: end;
    position: relative;
}

@media only screen and (max-width: 1100px) {
    header {
        grid-column: 2;
        grid-row: 1;
        justify-self: normal;
    }
}

header h1 {
    color: #ffffff;
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 4rem;
    height: 6rem;
    line-height: 6rem;
    position: absolute;
    text-transform: lowercase;
    transform: rotate(-90deg);
    right: 0;
    top: 3rem;
    transition: top 1s;
    transform-origin: bottom right;
}

@media only screen and (max-height: 600px) {
    header h1 {
        top: -3rem;
    }
}

@media only screen and (max-width: 1100px) {
    header h1 {
        display: block;
        position: static;
        text-align: center;
        transform: none;
    }
}

main {
    background: #ffffff;
    color: #000000;
    align-content: start;
    display: grid;
    grid-gap: 1rem;
    grid-column: 2;
    transition: padding-top 1s;
    padding: 9rem 3rem;
}

@media only screen and (max-height: 600px) {
    main {
        padding: 3rem;
    }
}

@media only screen and (max-width: 1100px) {
    main {
        grid-column: 2;
        grid-row: 2;
        padding: 3rem;
    }
}

@media only screen and (max-width: 600px) {
    main {
        grid-column: 2;
        grid-row: 2;
        padding: 2rem;
    }
}

a {
    color: #714d7f;
}
a:hover,
a:active {
    color: #000000;
}

em {
    font-weight: lighter;
}

strong {
    color: #714d7f;
    font-weight: bolder;
}

h2 {
    color: #714d7f;
    font-size: 1.5rem;
    font-weight: bolder;
    margin-top: 2rem;
}

p {
    font-size: 1.1rem;
}
h2 ~ p {
    font-size: 1rem;
}

aside h3 {
    color: #714d7f;
    font-size: 1.25rem;
    font-weight: bolder;
    margin-top: 2rem;
}
aside h4 {
    margin-bottom: 1rem;
}

aside dl {
    display: grid;
    grid-template-columns: 4rem auto;
    text-align: left;
}
aside dl dt {
    font-weight: bold;
}