html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.music-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    padding: 10px 12px;
    font-size: 10px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

    .music-btn:hover {
        background-color: rgba(220, 220, 220, 0.9);
    }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
.background-image-yury {
    background-image: url('/images/People/yury.jpg'); /* Убедитесь, что путь верный */
}
.background-image-yuly {
    background-image: url('/images/People/yuly.jpg'); /* Убедитесь, что путь верный */
}
.background-image-natasha {
    background-image: url('/images/People/natasha.jpg'); /* Убедитесь, что путь верный */
}
.background-image-sasha {
    background-image: url('/images/People/sasha.jpg'); /* Убедитесь, что путь верный */
}
.background-image-marina {
    background-image: url('/images/People/marina.jpg'); /* Убедитесь, что путь верный */
}
.background-image-present {
    background-image: url('/images/People/present.jpg'); /* Убедитесь, что путь верный */
}

.circle-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

    .circle-button:hover {
        opacity: 0.8;
        transform: scale(1.1);
    }


.text-block {
    max-width: 600px;
    padding: 0 15px;
}
html {
  position: relative;
  min-height: 100%;
}

.img-fluid-yuly {
    max-width: 70%;
    height: auto;
}

body {
    background: url("/images/back.jpg") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    color: #fff;
}

.overlay {
    min-height: 100vh;
    padding: 2rem;
}

h1, h2, p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.photo-grid img {
    border: 2px solid #fff;
    border-radius: 1rem;
    transition: transform 0.3s;
}

    .photo-grid img:hover {
        transform: scale(1.05);
    }