html,body {
    height: 100%;
    overflow-y: hidden;
}

body {
    background-image: url("../Assets/home_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#home-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#home-headline {
    color: #EC7969;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 150px;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 10px;
}

#home-oneline {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.no-margin {
    margin: 0;
}
.negative-margin {
    margin: -30px 0 0 0;
}

.btn {
    box-shadow: none;
    border: none;
}

.btn:hover {
    cursor: pointer;
}

#products-btn {
    margin-top: 20px;
    margin-bottom: 20px;
    height: 50px;
    width: 200px;
    background-color: #EC7969;
    font-family: "Montserrat", sans-serif;
    font-weight: 450;
    font-size: 15px;
    border: solid 3px;
    border-color: #EC7969;
    transition: 1s;
}

#products-btn:hover {
    background: none;
    color: #EC7969;
}

@media screen and (max-width:414px){
    body {
        background-image: url('../Assets/home_bg_mobile.png');
    }

    #home-container {
        width: 100%;
        margin-left: 0;
        align-items: center;
        justify-content: end;
    }

    #home-headline {
        font-size: 55px;
        letter-spacing: 2px;
        text-align: center;
    }

    .negative-margin {
        margin: 0;
    }

    #home-oneline {
        font-size: 22px;
        text-align: center;
        margin-left: 5px;
        margin-right: 5px;
    }

    .btn {
        color: #1d1d1d;
    }

    #products-btn {
        margin-bottom: 40px;
    }
}