.home {
    .bg-home {
        position: relative;
        img {
            width: 100%;
            @media screen and (max-width: 700px) {
                object-fit: cover;
                height: 350px;
            }
        }
    }

    .home-h1 {
        padding: 25px 25px 0 25px;
        text-align: center;

        h1 {
            margin: 0;
        }
    }

    .home-text {
        padding: 25px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .home-titel {
        color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        animation-name: einblenden;
        animation-duration: 1.5s;
        animation-timing-function: ease-in-out;
        width: 100%;

        .firstWord {
            color: #61A4D7;
        }

        h1 {
            font-size: 100px;

            @media screen and (max-width: 900px) {
                font-size: xx-large;
            }
        }

        h4 {
            font-size: 30px;

            @media screen and (max-width: 900px) {
                font-size: larger;
            }
        }
    }
    a{
        text-decoration: none;
    }
    button{
        background: rgba(0, 0, 0, 0.1);
        border: none;
        padding: 0.5rem 0.6rem;
        border-radius: 3px;
        display: flex;
        align-items: center;

        i{
            padding-left: 0.5rem;
            font-size: small;
        }
    }

    button:hover{
        background: #bebebe;
        transition: all 100ms ease-in-out;
    }
}

@keyframes einblenden {
    from {
        top: 100%;
        color: rgba(255, 255, 255, 0);
    }
    to {
        top: 50%;
        color: white;
    }
}