/* @font-face {
    font-family: 'HelveticaNeueLTPro-BlkEx';
    src: url(fonts/HelveticaNeueLTPro-BlkEx.otf);
  } */
html, body {
    max-width: 100%;
    overflow-x: initial;
    
    }


body {
  margin: 0px;
  padding: 0px;
  background-color: black;
  /* font-family: "Noto Sans", sans-serif; */
  /*font-family: 'HelveticaNeueLTCom-BlkEx', 'serif'; */
  font-family: 'Montserrat', 'sans-serif';
  /*font-family: 'Noto Sans', sans-serif;*/
  user-select: none;
  background-color: black;
  color: white;

}

.header {
  background-image: url(images/silver.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 10px 10px;
  
}

.cont {
  width: 60%;
  margin: auto;
}

.open {
  background-image: url(images/wave_cloth_02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 80vh;
  
}
 
/* .test {
  background-color: blue;
}  */

.textbox {
  width: 70%;
  margin: 30px 0px;
}


.textbox h1 {
  color: white;
  font-size: 350%;
  text-shadow: 0 0 10px white;
}

.p-box {
  color: white;
  background-color: red;
  text-align: left;
  padding: 20px 20px;
  font-size: 190%;
  border-radius: 10px;
  font-style: italic;
  width: 70%;
}

.main {
  width: 60%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 30px;
  
}

.accordion {
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 25px;
  transition: 0.4s;
  border-radius: 10px 10px 10px 10px
}

.accordion:after {
  /* content: "\02795"; */ /* Unicode character for "plus" sign (+) */
  content: "+";
  font-size: 30px;
  color: white;
  float: right;
  margin-left: 5px;
  border: none;
}

.active:after {
  /* content: "\2796"; /* Unicode character for "minus" sign (-) */
  content: "-";
  
}

.active {
  border-radius: 10px 10px 0px 0px
}

/* .active, .accordion:hover {
    background-color: #ccc; 
  } */

.panel {
  padding: 0px 18px;
  display: none;
  background-color: white;
  border-radius: 0px 0px 10px 10px;
  overflow: hidden;
}

.panel p {
  color: #333;
  font-size: 20px;

}

.set {
  margin: 10px 10px;
}

.plus {
  float: right;
  text-align: right;
}

.logo {
  float: right;
}

.group-head {
  font-size: 300%;
  margin-top: 50px;
  text-shadow: 0 0 10px white;
}

@media screen and (max-width: 600px) {

    .cont {
        width: 85%;
        margin: auto;
        margin-left: 2px;
        }
        
    .textbox {
        width: 100%;
        margin: 30px 0px;
        
        }
    .p-box { 
           width: 100%;
           padding: 15px 15px;
           font-size: 150%;
       }
       
    .main {
        width: 90%;
        
    }
  
}
