@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Noto+Sans+Mono:wght@300;400&display=swap');


/*----general----*/

html body{
    margin:0;
    padding:0;
    background: #1a9fff;
    font-family: 'Helvetica';
}

h1{
    font-size: 1em;
    margin:0px;
}

p{
    margin:0;
}
.text{
    /* font-family: 'Courier Prime', monospace; */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8em;
    margin-top: 0px;
    margin-bottom: 40px;
}
.lang{
    justify-content: flex-end;
    display: flex;
    margin: 0px;
}

.work_link{
    cursor: pointer;
}

a {
    text-decoration: none;
    margin: 0;
    cursor: pointer;
    color: #000000;
}
a:visited{
    color:#000000;
}

.space{
    margin-bottom: 40px;
}

#img{
    margin: auto;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    transition: border-radius 0.5s ease;
} 

/* #img:hover {
  border-radius: 10px;
} */
#iframe-bd{
    border-radius: 12px;
    overflow: hidden;
}

#iframe-bd iframe {
    border: none;
    border-radius: 12px;
    width: 100%;
    height: 300px;
}

.lang-toggle{
    float: right;
    display: flex;
    cursor: pointer;
}

.artistlink{
   text-decoration: underline;
}

.img-text{
    display: block;
    text-align: center;
    /* width: inherit; */
    /* align-items: center; */
    cursor: pointer;
    font-size: small;
    margin-bottom:20px;
}

#en{
    text-decoration: underline;
    margin-right: 5px;  
}
#en:hover {
  color: rgb(255, 255, 255);
}

#de{
    text-decoration: underline;
     margin-left: 5px;
}
#de:hover {
  color: rgb(255, 255, 255);
}

.de{
    display: none;
}

#addImg {
    display: block;
    margin: auto;
    align-items:center;
    object-fit: scale-down;
    border-radius: 8px;
}

#video{
    aspect-ratio: 16/9;
    display: block;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
}
#footer{
    display: block;
    text-align: center;
    font-size: small;
    max-width: 60vw;
    margin: auto;
}

/*-----media queries for computers-----*/

@media screen and (min-width: 760px) 
{
    #content{
        width: 60vw;
        max-width: 1200px;
        margin: auto;
        text-align: justify;
    }

    #video{
        width:  calc((75vw - 30px)* 0.75 - 75px);
    }
}
/*-----media queries for smart phone-----*/

@media screen and (max-width: 759px) {
    #content{
        max-width: calc(100vw - 40px);
        margin-left: 20px;
        margin-right: 20px;
        text-align: justify;
    }

}

/* Swiper Styles */
.swiper {
    width: 100%;
    margin: 20px 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 12px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #1a9fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #1a9fff !important;
}

.swiper-pagination-bullet {
    background: #1a9fff !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    background: #1a9fff !important;
    opacity: 1 !important;
}

/* Fade Swiper Styles */
.swiper.mySwiperFade {
    width: 100%;
    margin: 20px 0;
}

.swiper.mySwiperFade .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

.swiper.mySwiperFade .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 12px;
}

/* Additional specificity for Swiper elements */
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    color: #1a9fff !important;
}

.swiper .swiper-pagination-bullet {
    background: #356a90 !important;
}

.swiper .swiper-pagination-bullet-active {
    background: #1a9fff !important;
}

/* Custom Scrollbar Styling */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
    background-clip: content-box;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* For older Firefox versions */
* {
    scrollbar-face-color: rgba(255, 255, 255, 0.3);
    scrollbar-track-color: transparent;
    scrollbar-arrow-color: rgba(255, 255, 255, 0.3);
    scrollbar-shadow-color: transparent;
}




