* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway';
    font-size: 24px;
    text-transform: lowercase;
}

h2 {
    text-align: center;
}

.normal-case {
    text-transform: none;
}

.small {
    font-size: 16px;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .inner {
        margin: 0 auto;
        padding: 16px;
        max-width: 800px;
    }
}

.landing {
    min-height: 100vh;
    background-color: #e4e4e4;
    color: #232323;

    .inner {
        padding: 16px 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.about {
    min-height: 100vh;
}

.imprint {
    background: #000;
    color: #fff;
}

img {
    max-width: 100%;
}

a {
    position: relative;
    color: inherit;
    text-decoration: none;

    &:after {
        position: absolute;
        bottom: -2px;
        left: -4px;
        right: -4px;
        height: 2px;
        background-color: #000;
        content: "";
    }
}