 * {
   box-sizing: border-box;
 }

 .gray {
   background-color: #ededed;
   /*rgb(246, 246, 246); */
 }

 .wide-padding {
   padding: 96px max( min((100% - 888px) / 2, 96px), 16px);

 }

 .center {
   text-align: center;
 }

 body {
   position: relative;
   max-width: 1080px;
   min-width: 150px;
   margin: 32px auto;
   padding: 0;
 }

 header {
   text-align: center;
   margin: 0;
 }

 h1 {
   font-family: 'Fugaz One', sans-serif;
   font-size: max(min(5vw, 48px), 26px);
   color: rgb(1, 0, 102);
   /* #8b0000;  rgb(250, 140, 92); */
   margin: 0 0 8px 0;
 }

 p {
   font-family: 'Open Sans', sans-serif;
   font-size: max(min(1.5vw, 16px), 14px);
   /*
        font-size:1.5vw;
        font-size:16px;
        */
   text-align: justify;
   margin: 0;
 }

 .spacer {
   font-family: 'Fugaz One', sans-serif;
   font-size: 18px;
   font-weight: normal;
   height: 96px;
   line-height: 60px;
   text-align: center;
   margin: 0;
 }

.clear {
  color:transparent;
}
 section>hr {
   border: 1px solid black;
   width: 50px;
   margin-top: 32px;
   margin-bottom: 0;
 }

 header>p {
   text-align: center;
   padding: 32px max( min((100% - 888px) / 2, 96px), 16px);
 }

 header>p>span {
   font-size: 18px;
   font-weight: bold;
 }

 button {
   background: rgb(1, 0, 102);
   /* #8b0000; rgb(250, 140, 92); */
   color: white;
   min-width: 150px;
   line-height: 24px;
   padding: 18px 8px;
   font-family: 'Open Sans', sans-serif;
   font-size: 16px;
   font-weight: bold;
   border: none;
   cursor: pointer;
 }

 .button {
   background: rgb(1, 0, 102);
   /* #8b0000; rgb(250, 140, 92); */
   color: white;
   min-width: 150px;
   width: 150px;
   line-height: 24px;
   padding: 18px 8px;
   font-family: 'Open Sans', sans-serif;
   font-size: 16px;
   font-weight: bold;
   text-decoration: none;
   display: inline-block;
 }

 .logo {
   /*
        max-width:1080px;
        width:100%;
        height:auto;margin:0 auto;
        max-height:500px;
        */
   background-image: url("images/background.jpg");
   background-repeat: repeat;
   background-size: cover;
   text-align: center;
 }

 .logo-img {
   max-width: 1080px;
   width: 100%;
   height: auto;
   margin: 0 auto;
   max-height: 500px;
 }

 div.gallery {
   /* border: 1px solid #ccc; */
 }

 div.gallery:hover {
   /* border: 1px solid #777; */
 }

 div.gallery img {
   width: 100%;
 }

 * {
   box-sizing: border-box;
 }

 .responsive {
   padding: 0 6px;
   float: left;
   width: 33.33333%;
 }

 @media only screen and (max-width: 700px) {
   .responsive {
     width: 49.99999%;
     margin: 6px 0;
   }
 }

 @media only screen and (max-width: 500px) {
   .responsive {
     width: 100%;
   }
 }

 .clearfix:after {
   content: "";
   display: table;
   clear: both;
 }