@import url(https://fonts.googleapis.com/css2?family=Ubuntu);

  *, *::before, *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;

    padding-inline-start: 0;
    
  }
  

  input, button, textarea, select {
    font: inherit;
  }
  

  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  

  

  .mobile{
    display: none;
  }

  .pc{
    display: contents;
  }

  body{

    color: white;
    height: 100vh;
    font-size: 1.2rem;
    line-height: 1.5;
    background: linear-gradient(black 0%, #22043d 50%, #190430 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: verdana;
    
    
    
  }


  header {
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 11vh;
    z-index: 999;

    background-color: black;

  }

  footer{
    position: fixed;
    bottom: 0;
    left: 0;
    
    width: 100%;
    height: 5vh;
    z-index: 999;

    background-color: rgb(45, 10, 107);
  }

  main{
    margin-top: 11vh;
    padding: 1.2rem;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 15vh;

  } 
  main h2{
    font-size: 40px;
    text-align: center;
    margin: 2vh;
  }
  main p{
    font-size: 20px;
    margin: 2vw;
    text-align: justify;
  }
  
  iframe{
    max-width: 100%;
  }

#pageTitle{
  font-size: 100%;
  padding: 2vw;
}
.banner{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  
  
}

.banner *{
  font-family: ubuntu;
}

.banner section.pc{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center; 
  justify-content: space-between; 
}

.bannerImg{
  height: 100%;
  padding:1vh;
}

.bannerImg img {
  height: 100%; 
  width: auto;
}

.banner ul {
  display: flex; 
  list-style: none;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
}
.banner ul li{
  /* background: linear-gradient(#190430 100%, #22043d 50%, #190430 100%);
  transition: background 0.3s ease; */
  display: flex;
  width: 10vw;
  min-width: 120px;
}
/* .banner ul li:hover{
  background: #481a76;
} */

.banner ul li a {
  text-decoration: none; 
  color: white; 
  font-size: 100%;
  transition: color 0.3s ease; 

  width: 100%;
  height: 100%;
  background: rgb(72,26,118);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vh;
/* background: linear-gradient(0deg, rgba(72,26,118,1) 0%, rgb(94, 25, 126) 50%, rgba(72,26,118,1) 100%); */
  
}

.banner ul li a:hover {
  color: #f39c12; 
  /* background: rgb(72,26,118); */
  background: linear-gradient(0deg, rgba(72,26,118,1) 0%, rgb(94, 25, 126) 50%, rgba(72,26,118,1) 100%);
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #321180;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #45209b;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}



@media all and (max-width : 800px) {
  *.pc *, .banner section.pc{
    display: none;
  }
  .mobile{
    display: contents;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 11vh;
    
    z-index: 999;

    background-color: black;

  }
  main h2{
    font-size: 26px;
    margin-top: 5vh;
  }

  main p{
    font-size: 20px;
    margin-top: 5vh;
  }
  .banner{
    justify-content: space-between;

  }
  .bannerImg{
    padding:1vh;
    max-width: 20vw;
    display: flex;
    align-content: center;
    justify-items: start;
    /* max-width: 50px; */
  }
  .bannerImg img{
    width: 100%;
    height: auto;
  }
  .banner ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap
  }

  .banner ul li{
    width: 100%;

  }
  .banner a {
      text-decoration: none;
      color: #333;
      display: block;
  }


  details{
    height: 100%;
    width: 20%;
    min-width: 120px;
    background-color: #190430;
  }

  details > summary {
    
    width: 100%;
    height: 100%;
    cursor: pointer;
   
    display: flex; 
    align-items: center; 
    justify-content: center;
    
  }

  details > summary:hover{
    background: linear-gradient(0deg, #190430 0%, #351357 50%, #190430 100%);
  }
 
  details[open], details[open] > summary:hover{
    background: linear-gradient(0deg, #351357 0%, #190430 50%, #351357 100%); 
  }

  
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
  



}

  


  







