.parallax{
    background-image: url("../img/parallaxatelier.png");
    height: 50vh;
    width: 100vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.parallax-inner{
    color: white;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 1px 1px 3px black;
    background-color: rgba(0, 0, 0, .0);
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.parallax-inner h1{
    font-size: 60px;
}

.parallax-inner p{
    font-size: 20px;
}

@media (max-height: 772px) { 

.parallax-inner h1{
    font-size: 35px;

}

.parallax-inner p{
    font-size: 15px;

}
}

@media (max-height: 352px) { 

    .parallax-inner h1{
        font-size: 20px;
    
    }
    
    .parallax-inner p{
        font-size: 10px;
    
    }
    }
