@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
     float: left;
     padding: 3px;
     border: 0px solid red;
}


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

body {
   font-family: "Poiret One", san-serif;
   background: url("images/beach-waves-sand.jpg");
	background-repeat: no-repeat; 
	background-attachment: fixed; 
}

h1 {
   font-size: 50px;
}

h2 {
   font-size: 30px;
}

h3 {
   font-size: 25px;
}

p, li {
   font-size: 24px;
   font-weight: bold;
}

.btn {
   font-family: "Poiret One", san-serif;
   font-size: 20px;
   font-weight: bold;
   padding: 10px;
   border-radius: 10px;
   background-color: lightseagreen;
   color: white;
   box-shadow: 3px 3px 4px black;
}

.btn:hover {
   cursor: pointer;
   background-color: lightcoral;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
}

.flex-container > div {
   width: 44%;
   margin: 20px auto 20px;
   text-align: center;
   padding: 8px;
   background-color: white;
   color: black;
   border: solid 1px black;
   border-radius: 15px;
   font-family: "Poiret One", san-serif;
}

.flex-container > div:hover {
     box-shadow: 0px 0px 26px black;
     /*cursor: pointer;*/
}

.flex-container3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
}

.flex-container3 > div {
   width: 30%;
   margin: 0px auto 10px;
   text-align: center;
   padding: 8px;
   background-color: white;
   color: black;
   border: solid 1px black;
   border-radius: 15px;
   font-family: "Poiret One", san-serif;
}

.flex-container3 > div:hover {
     box-shadow: 0px 0px 26px black;
     /*cursor: pointer;*/
}
.flex-container-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
}

.flex-container-1 > div {
   width: 100%;
   margin: 20px auto 20px;
   text-align: center;
   padding: 8px;
   background-color: white;
   color: black;
   border: solid 1px black;
   border-radius: 15px;
   font-family: "Poiret One", san-serif;
}

.flex-container-1 > div:hover {
     /*box-shadow: 0px 0px 26px black;
     cursor: pointer;*/
}

.flex-container-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
   vertical-align: middle;
}

.flex-container-4 > div {
   width: 22%;
   margin: 20px auto 20px;
   text-align: center;
   padding: 5px;
   /*background-color: white
   color: black;
   border: solid 1px black;
   border-radius: 15px;
   font-family: "Poiret One", san-serif;;*/
}

.flex-container-4 > div:hover {
     /*box-shadow: 0px 0px 26px black;
     cursor: pointer;*/
}
  
input[type=text], select, input[type=email], input[type=password]{
   font-family: "Poiret One", san-serif;
   font-size: 20px;
   width: 100%;
   font-weight: bold;
}


@media only screen and (max-width: 900px) {
     /* For mobile phones: */
     [class*="col-"] {
     width: 100%;
     }

      
   .flex-container > div, .flex-container-4 > div, .flex-container3 > div {
       width: 100%;
   }
   
     .topnav {
       padding: 0px;
       font-size: 24px;
     }
     
     .topnav a:not(:first-child) {
          display: none;
     }
     
     .topnav a.icon {
          float: right;
          display: block;
     }
     
     .topnav.responsive {
          position: relative;
     }
     
     .topnav.responsive .icon {
          position: absolute;
          right: 0;
          top: 0;
     }
     
     .topnav.responsive a {
          float: none;
          display: block;
          text-align: left;
     }
     
     .topnav a {
          float: left;
          font-size: 24px;
          line-height: 0px;
     }

      p, li {
         font-size: 20px;
         font-weight: bold;
      }
   
   h1 {
      font-size: 35px;
   }

}