@font-face {
  font-family: 'Candara';
  src: url('/font/candara.ttf') format('truetype');
}
@font-face {
  font-family: 'CandaraBold';
  src: url('/font/candarab.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    font-family: "Candara", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: #bcbec0;
    color: #231f20;
}

footer {
    /* width: 100%; */
    padding: 30px;
}

footer img {
    width: 90%;
    /* object-fit: fill; */
    /* object-view-box: inset(20%); */
}

/* анимация */
details[open] {
  animation: animateDown 0.2s linear forwards;
}

@keyframes animateDown {
  0% {
    opacity: 0;
    transform: translatey(-15px);
  }
  100% {
    opacity: 1;
    transform: translatey(0);
  }
}



summary::-webkit-details-marker{display:none;}
summary::-moz-list-bullet{list-style-type:none;}
summary::marker{display:none;} 
summary {
   display: inline-block;
   padding: .2em 0 .2em 0;
   font-size: 1.4em;
   cursor: pointer;
}

summary h2 {
   font-family: "CandaraBold";
}

details {
  width: 100%;
  box-sizing: border-box; /* Ensures padding and borders are included in the 100% width */
  display: block;
  margin-bottom: .5rem;
}

#logo-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 50px;
    padding: 2rem;
}

#logo-header #birdie {
    width: 100px;
    margin: 3em 0 0 0;
}

#logo-header img {
    object-fit: cover;
    width: 95%;
}

#logo-header img, img {
    user-select: none;
    /* user-drag: none; */
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#about-project span {
    font-family: "CandaraBold";
    font-weight: bold;
}

.opened-container {
    /* width: 100%; */
    padding: 50px 0;
    /* background-color: #005162; */
    background-color: #fff;
    margin: 20px 0px;
    display: flex;
    justify-content: center;
}

.opened-container .content {
    /* max-width: 700px;
    width: 90%; */
    width: 70%;
}

details {
    margin-top: 20px;
}

.divider {
    /* border-bottom: 2px solid #27bdbe; */
    border-bottom: 2px solid #231f20;
    width: 100%;
    margin-bottom: 12px;
}

.message-us {
    text-transform: uppercase;
    font-size: 26px;
    /* color: #27bdbe; */
    color: #231f20;
    margin-top: 10px;
    cursor: pointer;
}

.showbills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 20px 0;
}

.showbill-item {
    width: 100px;
    /* height: 100px; */
    margin: 0 20px;
}

.showbill-item img {
    width: 100%;
    height: auto;
}

.showbill-year {
    /* color: #27bdbe; */
    font-size: 21px;
    padding-bottom: 10px;
}

.video-title {
    /* color: #27bdbe; */
    font-size: 21px;
    padding-bottom: 5px;
    margin-top: 25px;
}

.video-title span {
    font-weight: bold;
}

.video-item video {
    max-width: 500px;
    width: 90%;
    margin-bottom: 20px;
}

.person {
    font-weight: bold;
}

.role {
 font-size: 18px;
 font-weight: regular;
}

/* .songs-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.songs-list li {
    margin: 20px 0;
    font-size: 21px;
} */

.gallery-thumbnails {
    display: grid;
    /* place-items: center; */
    justify-content: center;
    gap: 20px;
    grid-template-columns: 150px 150px 150px;
}

.gallery-thumbnails .gallery-item {
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.gallery-thumbnails .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-view-box: inset(20%);
}


.song-item {
    margin-bottom: 20px;
}

.song-item .song {
    /* font-weight: 700; */
    font-family: "CandaraBold"
}

.song-item .place {
    /* font-family: ; */
}

/* .news-text {
    
} */

@media (min-width: 700px) {
  
  #logo-header {
    /* width: 100%; */
    /* max-width: 600px; */
    }

    #logo-header img {
        object-fit: cover;
        max-width: 600px;
    }

    #logo-header #birdie {
        width: 150px;
    }

    .video-item video {
        max-width: 600px;
        /* width: 90%; */
    }

    .opened-container {
        padding: 50px;
    }


    footer {
        /* width: 100%; */
        padding: 70px 40px;
    }

    footer img {
        max-width: 360px;
        object-view-box: unset;
    }
}


