/*
*  html5resetcss
*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
/* end of css reset */

body{
    font-family: 'Noto Serif Old Uyghur', serif;
    background-image: url(images/tile_background.png);
    background-repeat: repeat-y;

}


header{
    display: flex;
    flex-direction: row;
    margin: auto;
    padding: 0px;
    width: 100%;
    background-color: white;
    box-shadow: 10px 10px 10px black;
}

header h1{
    margin: auto;
    width: 100%;
    font-size: 1.5em;
    padding: 0px 10px 0px;
    transition: 0.2s;
    

}

header h1:hover{
    transform: skewX(-5deg);
    letter-spacing: 2px;
    background-clip: text;
    -webkit-background-clip: text;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

}

header a{
    transition: 0.2s;
    border-radius: 10px;
    padding: 5px;
    text-decoration: none;
    color: black;

}

header a:hover{
    color: gray;
    text-shadow: 2px 2px 10px gray;
}

header img{
    width: 8%;
    margin-left: 3%;
    border-radius: 10px;
    margin-bottom: 0.5%;

    max-width: 10%;
}


section{
    text-align: center;
    font-size: 20px;
    margin: 20px 10px 10px;
    font-family: 'Lobster', sans-serif;

}

.band{
    font-size: 60px;
    background-image: radial-gradient(gray, black);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 5px;
    margin: auto;

    text-decoration: underline;
}
.about{
    box-shadow: 6px 5px 10px black;
    background-color: rgb(255, 255, 255, 70%);
    margin: auto;
    width: 100%;
    
}
.about p{
   padding: 5px;
   margin: auto;
   width: 90%;
   color: black;
   text-shadow: 5px 5px 10px gray;
   font-size: 30px;
   letter-spacing: 3px;

}
.about h3{
    color: black;
    font-size: 25px;
    text-shadow: 5px 5px 15px gray;
    letter-spacing: 5px;
    line-height: 50px;
}



/* CAROUSEL */

.picturecarousel{
    margin: auto;
    padding: 20px;
    width: 750px;


}
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;

    border-radius: 20px;

    box-shadow: 10px 10px 10px black;
}
  
.carousel { /* The attribute making it a flex box is making it be in place for the carousel box. */
    display: flex;
    transition: transform 0.5s ease-in-out;
}
  
.carousel img {
    width: 100%;
    height: auto;

}
  
.carousel-btn { /* carousel button controls */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgb(51, 51, 51, 0.5);
    border-radius: 10px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;

    transition: 0.5s;
}

.carousel-btn:hover{
    color: rgb(241, 102, 188);
    border-style: groove;
    border-width: 1px;
    border-color: #fff;
}
  
.prev {
    left: 10px;
}
  
.next {
    right: 10px;
}

/*end of carousel */

.images{
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    box-shadow: 5px 5px 10px black;
    margin: 20px 0px 0px -250px;
    width: 168%;
    background-color: rgb(255, 255, 255, 70%);
}

.images img{
    border-radius: 15px;
    padding: 5px;
    width: 200px;
    margin-top: auto;
    margin-bottom: auto;
}