body {
    background-image: url('/assets/img/baustelle-almost-weekend.svg');
    background-repeat: no-repeat;
    background-color: #6f2381;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: #6f2381;
    font-family: "Barlow", Arial, serif;
}

h1, h2, h3, h4, h5{
    font-family: "Barlow", Arial, serif;
    font-weight: 500;
    color: #6f2381;
    margin-bottom: 2rem;
}

a{
    color: #000000;
}

.logo{
    max-width: 300px;
}

.bg-simple{
    background-image: none;
    background-color: #d3d800;
    font-size: 120%;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-text {
    position: absolute;
    bottom: 15%;
    left: 15%;
    font-size: 155%;
    max-width: 500px;
    border-radius: 0.5rem;
    a {
        color: #6f2381;
    }

    padding: 1rem 1rem;
    background-color: #d3d800;
}

@media (max-width: 1024px) {
    body {
        background-position: 40%;
    }

    .content-text {
        font-size: 125%;
    }
}

@media (max-width: 500px) {
    body {
        background-position: 40%;
    }

    .content-text {
        position: absolute;
        left: 4%;
        right: 4%;
        font-size: 115%;
    }

}