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

* {
   box-sizing: border-box;
}

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

[class*="col-"] {
   float: left;
   padding: 0px 0px;
   border: solid 1px rgba(0,0,0,0);
   margin-top: 0px;
}

.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%;}
      
body {
   margin-top: 0px;
   font-family: "Playfair display", serif;
   background-color: lightcyan;
}

p, li {
   font-family: "Playfair display", serif;
   font-weight: 500;
   font-size: 20px;
}

input[type=text], textarea, select, input[type=password] {
   width: 100%;
   font-family: "Playfair display", serif;
   font-weight: 500;
   font-size: 20px;
}

input[type=submit]{
   font-family: "Playfair display", serif;
   font-weight: 500;
   font-size: 20px;  
}

input[type=submit]:hover, .btn:hover {
   cursor: pointer;
}

.btn {
   background-color: indianred; 
   padding: 15px; 
   color: white; 
   font-family: "Roboto", serif; 
   font-size: 20px; 
   border-radius: 15px;
   text-shadow: 2px 2px 2px black;
}

h3 {
   font-family: "Playfair display", serif;
}

a {
   text-decoration: none;
   color: black;
}

a:hover {
   text-decoration: underline;
}

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

.flex-container > div {
   width: 23%;
   margin: 20px auto 20px;
   text-align: center;
   padding: 0px;
   background-color: teal;
   color: white;
   border: solid 1px black;
   border-radius: 15px;
}

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


.flex-container-1 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.flex-container-1 > div {
   width: 100%;
   margin: 20px auto 20px;
   padding: 0px;
   background-color: white;
   color: black;
   border: solid 1px black;
   border-radius: 15px;
}

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

.topnav {
  overflow: hidden;
  background-color: cadetblue;
  padding: 10px 0px;
  margin-top: 10px;
}

.topnav a {
  float: none;
  display: inline;
  color: white;
  text-align: center;
  padding: 24px 16px;
  text-decoration: none;
  font-size: 20px;
  font-weight: normal;
  font-family: "Playfair display", serif;
  font-style: italic;
}

.topnav a:hover {
  background-color: lightblue;
  color: black;
}


.topnav .icon {
  display: none;
  font-size: 25px;
}
   
@media screen and (max-width: 1100px) {
   
     /* For mobile phones: */
     [class*="col-"] {
     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-family: "Playfair display", serif;
      font-weight: 500;
      font-size: 18px;
   }
   
   .flex-container > div {
       width: 100%;
   }
   
}