* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: metropolis;
    src: url(../fonts/Metropolis-ExtraLight.woff2);
    font-weight: 200;
}

@font-face {
    font-family: metropolis;
    src: url(../fonts/Metropolis-Regular.woff2);
    font-weight: 400;
}

@font-face {
    font-family: metropolis;
    src: url(../fonts/Metropolis-SemiBold.woff2);
    font-weight: 500;
}

body {
    font-family: metropolis, sans-serif;
}

.homepage {
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px;
    background-color: #214b5b;
    color: white;
    column-gap: 80px;
}

.homepage a {
    color: white;
    text-decoration: none;
}

.homepage__left {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 50%;
}

.homepage__soon {
    font-size: 12vw;
    font-weight: 200;
}

.homepage__impressum {
    font-size: 24px;
    font-weight: 500;
}

.homepage__impressum a {
    display: block;
    width: fit-content;
    color: white;
    transition: 0.2s ease-in;
}

.homepage__impressum a:hover {
    transform: scale(1.05);
    transition: 0.2s ease-in;
}

.homepage__right {
    width: 25%;
    min-width: 100px;
    max-width: 450px;
}

.impressum {
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px;
    background-color: white;
    font-size: 24px;
    color: #214b5b;
    row-gap: 48px;
}

.impressum a {
    color: #214b5b;
    text-decoration: none;
}

.impressum h2 {
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 500;
}

.impressum__left {
    max-width: 800px;
    line-height: 1.2;
}

.impressum__right {
    min-width: 150px;
    max-width: 200px;
}

.impressum__right img:hover {
    cursor: pointer;
}

@media only screen and (max-width: 1280px) {
    .homepage {
        padding: 48px;
    }

    .impressum {
        flex-direction: column-reverse;
        justify-content: flex-end;
        padding: 48px;
    }

    .impressum__right {
        align-self: center;
    }
}

@media only screen and (max-width: 768px) {
    .homepage {
        padding: 48px;
    }

    .homepage__impressum {
        font-size: 18px;
    }

    .impressum {
        flex-direction: column-reverse;
        padding: 48px;
        font-size: 18px;
    }

    .impressum h2 {
        font-size: 18px;
    }

    .impressum__right {
        align-self: center;
    }
}

@media only screen and (max-width: 500px) {
    .homepage {
        column-gap: 24px;
    }

    .homepage__soon {
        font-size: 10vw;
    }

    .homepage__impressum {
        font-size: 16px;
    }

    .impressum {
        padding: 24px;
    }
}
