<style>

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    padding: 40px 20px;

    font-family: "PT Sans", sans-serif;
    color: #000;

    background-image: url("img/back.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.logo {
    margin-bottom: 15px;
    text-align: center;
}

.logo img {
    max-width: 500px;
}

.menu {
    margin-bottom: 15px;
    padding: 1px;

    text-align: center;

    background: rgba(255, 255, 255, 0.5);
}

.menu nav {
    display: inline-block;
}

.about {
    margin-bottom: 10px;
    padding: 5px;

    line-height: 1.1;
    text-align: justify;

    background: rgba(255, 255, 255, 0.5);
}

.about img {
    margin-bottom: 0px;
}

.about iframe {
    width: 100%;
    max-width: 100%;
    border: 0px;
    box-sizing: border-box;
}

/* Для квадратных iframe (Bandcamp и SoundCloud) */
.about iframe[src*="bandcamp.com"],
.about iframe[src*="soundcloud.com"] {
    aspect-ratio: 1 / 1; /* квадрат 1:1 */
    height: auto;
}

/* Для видео iframe (YouTube) */
.about iframe[src*="youtube.com"] {
    aspect-ratio: 16 / 9; /* 16:9 */
    height: auto;
}

.about p:not(:last-child) {
    margin-bottom: 10px;
}

footer {
    margin-top: 20px;
    text-align: center;
}

footer .counter {
    display: inline-block;
    padding: 10px 15px;

    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {

    body {
        padding: 20px 10px;
        background-attachment: scroll;
    }

    .about,
    .menu {
        font-size: 15px;
    }

}

</style>
