body, html{
    width: 100%;
    height: 100%;
    background: #000;
    font-size: 16px;
    font-family: Arial, Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #f0f0f0;

}

*{box-sizing: border-box}

a{ color: #fff;}
a:hover{ color: #f0f0f0;}
p{line-height: 22px;}
header, main, footer{
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.blues-container{
    width: 100%;
    padding: 0 20px;
}
.blues-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.blues-center{
    justify-content: center;
}

.blues-middle-text,
.blues-middle-text a{
    color: #aaa;
    text-align: center;
    font-size: 14px;
}

nav { width: 100%;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    margin: 10px 0;
}
nav ul{ list-style: none;width: 100%;padding: 0 }

.blues-top-menu li a{
    font-size: 15px ; text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}
h1,h2,h3{  color: #fff;}
h1{
    text-align: center;
    font-size: 28px;
    margin: 40px 0;

}

.blues-content{
    background: url("/images/back.jpg") no-repeat;
}
.blues-footer-text{
    font-size: 12px;
    color: #999;
    margin:30px 0
}

.blues-otziv{
    margin: 20px 0;
    padding-left: 20px;
    border-bottom: 1px dashed #666;
    padding-bottom: 20px;
}

.blues-otziv:last-child{
    border: none;
}
.blues-otziv:before{
    content: ' ';
    width: 36px;
    height: 36px;
    background: url(/images/man.svg) center;
    background-size: cover;
    display: block;
    float: left;
    margin-right: 15px;
    margin-bottom: 5px;
}

.blues-image-left{
    float: left;
    margin-right: 15px;
    margin-bottom: 5px;
}
.blues-photo-gallery a{
    display: block;
    max-width: 30%;
}
.blues-photo-gallery img{
    display: block;
    width: 100%;
    height: 100%;
}

.blues-photo-gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px 10px ;
    padding-bottom: 30px;
}

@media screen and (max-width: 800px){
    .blues-photo{
        display: none;
    }
    .blues-middle-text{
        text-align: right;
    }
    .blues-photo-gallery a {
        display: block;
        max-width: 48%;
    }
}

@media screen and (max-width: 700px){
    nav ul{
        flex-wrap: wrap;
        justify-content: center;
    }
}


@media screen and (max-width: 600px){
    .blues-image-left{
        float: unset;
        margin: 20px auto;
        display: block;
        width: 100%;
    }
    .blues-photo-gallery a {
        display: block;
        max-width: 100%;
    }
}
@media screen and (max-width: 480px){
    .blues-middle-text{
        display: none;
    }
    body > header > div > div:nth-child(1) {
        justify-content: center;
    }
}