body{
    margin: 0;
    padding: 0;
    font-family: 'D-DIN', sans-serif;
}

p{
    margin: 0;
    padding: 0;
    text-align: center;
}

a{
    text-decoration: none;
    color: #000000;
}

.titleText{
    padding-top: 0.8vw;
    font-size: 2vw;
    color: #5C5C5C;
}

.heroSection{
    height: 100vh;
    background-color: #FAFAFA;
}

.titleSection{
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.kontaktButton{
    justify-content: center;
}

.button{
    padding: 10px 40px;

    background-color: #FAFAFA;
    outline: 1px solid #000000;
    border-radius: 12px;
}

.button :hover{
    font-weight: 900;
}

#logo_heroSection{
    width: 50vw;
}

.secondRow{
    height: 90vh;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.textSection{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.fatFont{
    font-size: 10vw;
    font-weight: 850;
    color: #FFFFFF;
    line-height: 9vw;
}

.footerRow{
    background-color: #FAFAFA;
    padding: 0 12vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8vw;

    padding-top: 150px;
    padding-bottom: 150px;
}

.footerContainer{
    height: fit-content;
    min-width: 15vw;
}

.footerHeader{
    text-align: left;
    font-size: 2vw;
    margin-bottom: 25px;
}

.footerText{
    text-align: left;
    font-size: 1.4vw;
    line-height: 2vw;
}

.largeFlexbox{
    flex-grow: 2;
    max-width: 350px;
}

.smallFlexbox{
    flex-grow: 1;
}

.linkSection{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 45px;
}

.boldText{
    font-weight: 900;
}

.footerName{
    text-align: left;
    font-size: 1.8vw;
    line-height: 2vw;
    font-weight: 10;
    margin-bottom: 15px;
}

@media only screen and (max-width: 600px) {

    .footerText{
        font-size: 1.1em;
        line-height: 1.3em;
    }

    .footerName{
        font-size: 1.2em;
        line-height: 1.4em;
        font-weight: 10;
        margin-bottom: 15px;
    }

    .button{
        padding: 5px 30px;
        background-color: #FAFAFA;
        outline: 1px solid #000000;
        border-radius: 12px;
    }

    .footerRow{
        background-color: #FAFAFA;
        padding: 0 12vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 8vw;
    
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .footerHeader{
        text-align: left;
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    
    .footerText{
        text-align: left;
        font-size: 1.1em;
        line-height: 1.25em;
    }
    
    .titleText{
        padding-top: 2vw;
        font-size: .75em;
        color: #5C5C5C;
    }
}