@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: 5px;
  border: 0px solid red;
}

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

body {
   margin: 0;
   font-family: "Maname", serif;
   color: white;
}

h1 {
   font-size: 40px;
   color: yellow;
   text-shadow: 3px 3px 5px black;
}

h2 {
   font-size: 35px;
   color: yellow;
   text-shadow: 3px 3px 5px black;
}

h3 {
   font-size: 30px;
   color: yellow;
   text-shadow: 2px 2px 3px black;
}

h4 {
   font-size: 25px;
   color: yellow;
   text-shadow: 2px 2px 3px black;
}
p {
   font-size: 26px;
   color: white;
   text-shadow: 1px 1px 1px black;
}

a {
   color: white;
}

.flex-container3 {
    display: flex;
    flex-wrap: wrap;
}

.flex-container3 > div {
    background: linear-gradient(rgb(65,2,11),darkred);
    width: 30%;
    margin: 20px auto;
    border-radius: 5px;
    border: solid white 1px;
    padding: 0px 15px;
}

.flex-container3 > div:hover {
   border: solid yellow 1px;
   box-shadow: 0px 0px 15px white;
}

.flex-container4 {
    display: flex;
    flex-wrap: wrap;
}

.flex-container4 > div {
    background: linear-gradient(rgb(65,2,11),darkred);
    width: 23%;
    margin: 20px auto 0px;
    border-radius: 5px;
    border: solid white 1px;
    padding: 0px 15px;
}

.flex-container4 > div:hover {
   border: solid yellow 1px;
   box-shadow: 0px 0px 15px white;
}

.btn {
   width: auto;
   background-color: green;
   color: white;
   border: solid white 2px;
   box-shadow: 2px 2px 3px black;
   font-size: 20px;
   padding: 0px 10px 10px;
   border-radius: 10px;
   font-family: "Maname", serif;
}

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

.topnav {
  overflow: hidden;
  background-color: lightsalmon;
   /*padding-left: 200px;*/
   border-radius: 20px;
   border: solid green 5px;
   box-shadow: 4px 4px 8px black;
}

.topnav a {
  float: left;
  display: block;
  color: darkgreen;
  text-align: center;
  padding: 14px 16px 20px;
  text-decoration: none;
  font-size: 24px;
   font-weight: bold;
}

.topnav a:hover {
  background-color: red;
  color: white;
}

/*
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}
*/

.topnav .icon {
  display: none;
}

.hp-pic {
   width: 50%;
   float: left;
   margin-right: 20px;
}

@media screen and (max-width: 1600px) {
  .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;
  }

  [class*="col-"] {
    width: 100%;
  }
   
   h1 {
      font-size: 30px;
      color: yellow;
      text-shadow: 3px 3px 5px black;
   }

   h2 {
      font-size: 25px;
      color: yellow;
      text-shadow: 3px 3px 5px black;
   }

   h3 {
      font-size: 20px;
      color: yellow;
      text-shadow: 2px 2px 3px black;
   }

   h4 {
      font-size: 18px;
      color: yellow;
      text-shadow: 2px 2px 3px black;
   }
   
   p {
      font-size: 20px;
      color: white;
      text-shadow: 1px 1px 1px black;
   }
   
   .flex-container3 > div, .flex-container4 > div {
      width: 100%;
   }
   
   .topnav {
      padding-left: 0px;
   }
   
}