.color_chart{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.color {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    /* box-shadow: -2px 3px 5px rgba(0, 0, 0, .2); */
    width: 30vw;
    height: 100px;
    margin: 10px;
    /* border: 1px solid black; */
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    
    color: white;
}

.metalic {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    /* box-shadow: -2px 3px 5px rgba(0, 0, 0, .2); */
    width: 40vw;
    height: 125px;
    margin: 10px;
    /* border: 1px solid black; */
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    
    color: white;
}

.bar-standart{
    background-image: url(/images/blue_abstract.png);
    background-size: cover;
    height: 15rem;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.bar-standart .headline h1{
    color: white;
    font-size: 5rem;
    text-align: center;
    
}

h4{
    /* color: white; */
    /* font-size: 5rem; */
    margin-top: 30px;
    text-align: center;
}

.bar-metalic{
    background-image: url(/images/red_abstract.png);
    background-size: cover;
    height: 15rem;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar-metalic .headline h1{
    color: white;
    font-size: 5rem;
    text-align: center;
}

#anchorstandart, #anchormetalic, #anchorprimer{
    
    height: 8rem;
    
    
  }

/* small media ////////////////////////////////////// */

@media screen and (max-width: 800px){

    .color{
        font-size: 12px;
        width: 40vw;
    }

}

