@charset "utf-8";
body {
    font-family: "DotGothic16", serif;
    letter-spacing:1px;
    font-style: normal;
 
  }
  


p.logo img{

    width: 120px;
}
h1{
    text-align:center;
}
header {
   
    width:100%;
    border-bottom:1px solid black;
    background-color:white;
    position:sticky;
    top: 0;
    z-index:100;   
}
header nav ul{
    display: flex;
    justify-content:center;
    flex-wrap:wrap;
}
header nav ul li{
    margin: 0 13px;
    
}
header nav ul li a{
    -webkit-text-stroke: 0.01px black ; 
    font-size: 28px;
    font-weight: bold;
   
}
header nav ul li a:hover{
    color: aqua
}
body{

    background-color:rgb(188, 251, 251);
}
.primary{
    width: 100%;
    margin:30px auto ;
    display: flex;
    justify-content: center;
   
   
}
main{
    
    flex-basis:650px;
    border-radius: 18px;
    background-color:rgba(255,255,255,0.93);
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    flex-wrap:wrap;
}
main  h2{
    font-style:italic;
    overflow-wrap:anywhere;
    font-size:45px;
    width:200px;
    margin-right:200px;
    margin-top:20px;
    transform:rotate(-15deg);
    padding-right:20px;
    background: linear-gradient(to right,#e60000,#f39800,#fff100,#009944,#0068b7,#1d2088,#920783);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-shadow:-5px -3px 4px white;
}

main article {
   margin:0 12px 20px 12px ;
   padding:40px 80px;
   overflow-wrap:anywhere;
   border-bottom:0.12px dotted rgb(0, 0, 0);
   line-height: 1.5;
    
}
main article h3{
    font-size:23px;
    border:1px solid rgb(0, 0, 0);
    color:black;
    box-shadow:10px 10px 4px rgba(0,0,0,0.16);
    padding:17px;
}  
main article h4{
    color:blue;
    font-size:20px;
    border-bottom:2px dashed black;
    
    padding-bottom:3px;
    font-weight:bold;

}  
main article h5{
    font-size:23px;
    color:black;
   
} 
.blog{
    display: flex;
  
    justify-content: space-between;
}
.blog img{
    width:120px;
    height:150px;
}
.blog time {
    font-size: 15px;
}
.blog a{
    color:blue;
}
.blog a:hover{
    text-decoration:underline;
}
main article img{
    width:100%;
    margin:15px 0;
   
}
main article p{
    font-size:16px;
    margin:13px 0;
}
main article a{
    color:blue
}
main article iframe{
    width:100%;
    margin:15px 0;
}
main article time  {
    
    margin-top:10px;
    display: inline-block;
    color:rgb(101, 100, 100);
}
input[type="text"],
input[type="email"],
textarea{
    border: 1px solid black;
    background-color: white;
    width:100%;
    margin-top:5px;
    padding:4px 8px;

}
textarea{
    height:120px
}
.submitBtn {
    text-align:center;
}
input[type="submit"]{
    background-color: black;
    color:white;
    padding:18px 80px;
}
main article table th,td{
    border:solid 1px black;
    padding:10px;
}
main article table thead th {
    text-align:center;
    color:white;
    background-color:black;
    
}
main article table{
    background-color:white;
    border-collapse: collapse;
    width:100%
    
}

aside{
    
    width:230px;
    
    margin:0 20px;
    background-color:rgba(255,255,255,0.93);
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    height:580px;
    border-radius: 18px;
    
}
aside article{
    padding:30px 20px 0 20px;
    text-align:center;
    line-height: 1.5;
    
}
aside article h2{
    font-size:22px; 
    border:1px solid rgb(0, 0, 0);
    color:black;
    box-shadow:10px 10px 4px rgba(0,0,0,0.16);
    padding:20px;
      
}
p.artist img{
    width:100%;
    
    border-radius:50%;
    padding:15px 0;
} 

aside article p a{
    color:blue
}
aside article p a:hover{
    color:red;
}
aside ul  {
    display:flex;
    justify-content:space-between;
    padding-top: 20px;
}
aside ul img{
    width:30px;
}
aside ul img :hover{
    color:red;
    transition-property:color;
    transition-duration:200ms;
    transition-timing-function: ease-in;
    transition-delay: 0ms;
}
p.konnshu img{
    width:100%;
    margin-top:40px;
    border-radius: 18px;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
}
footer{
    
    margin-top:100px;
    text-align:center;
    padding:40px;
    background-color: white;
    color:black;
    width:100%;
    height:100%;
    bottom:0;
    border-top:1px solid black;
}
video{
    width:100%;
}
.pagenation_block{
    flex-wrap: wrap;
   
    justify-content: space-between;
}
.pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
  }
  
  .pagination li {
    margin-right: 1em;
    border:2px solid black;
    padding:20px;
    margin-bottom:28px;
    
  }  
  .pagination li a {
    text-decoration: none;
    color:black ;
  }
  
  
  .page {
    padding: .5em;
    border: 1px solid #000;
  }
  
  .active {
    background-color: #000;
  }
  
  .pagination .active a {
    color: white;
  }


 

  @media screen and (max-width:640px) {
body{
    font-weight: bold;
}
    .primary{
        display:block;
    }
    main{
        margin:0px 15px;
    }
    main article{
        
        padding:30px 27px;
    }
    .pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
   
    
  }
    .pagination li {
    margin-right: 0.5em;
    border:2px solid black;
    padding:10px;
    margin-top:0px;
  }

  .pagination li a {
    text-decoration: none;
    color:black ;
    
  }
  
  
  .page {
    padding: 0em;
    border: 1px solid #000;
  }
  aside{
    
    width:350px;
    margin:15px ;
    background-color:rgba(255,255,255,0.93);
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    height:550px;
    border-radius: 18px;
    
}
p.artist img{
    width:200px;
    
    border-radius:50%;
    padding:15px 0;
} 
aside ul  {
    display:flex;
    justify-content:center;
    padding-top: 20px;
}
aside ul img{
    width:30px;
    margin:0 10px;
}
p.konnshu img{
    width:90%;
    margin-top:60px;
    border-radius: 18px;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    object-fit:fill;
    
}
footer{
    
    margin-top:310px;
    text-align:center;
    padding:40px;
    background-color: white;
    color:black;
    width:100%;
    height:100%;
    bottom:0;
    border-top:1px solid black;
}
}