@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 {
   background: url("images/tiedye.webp") repeat fixed;
   background-size: 400px 400px;
}

h1,h2,h3,h4,h5,h6,p,ul,select,input[type=text],input[type=email],textarea,submit,fieldset,th,td,ol,li,td,.btn,input[type=number],input[type=date] {
  font-family: "Unkempt", cursive;
}

h1 {
   font-size: 50px;
}

h2 {
   font-size: 45px;
}

h3 {
   font-size: 40px;
}

h4 {
   font-size: 37px;
}

h5 {
   font-size: 34px;
}

h6 {
   font-size: 30px;
}

p,li,ul,.btn,legend {
   font-size: 23px;
   font-weight: bold;
}

input[type=text], textarea, input[type=email],input[type=password],input[type=number],input[type=date] {
   font-size: 23px;
}

#content-area {
   width: 80%;
   margin: 30px auto 40px auto;
   background-color: antiquewhite;
   opacity: 100%;
   border: solid 10px;
   border-image: linear-gradient(blue,pink,pink,pink,blue) .8;
   box-shadow: 0px 0px 50px 10px black;
   padding: 0px;
}

#footer {
   font-size: 23px;
   margin-bottom: 0px;
}

.btn {
   border-radius: 20px;
   background: url("images/tiedye.png") center center;
   padding: 10px;
   cursor: pointer;
   border: solid black 1px;
   color: black;
}

.btn:hover {
   box-shadow: 0px 0px 10px black;
}

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

.flex-container > div {
  width: 45%;
  margin: 10px;
  padding: 0px 10px;
  border: solid black 1px;
  background-color: #d7d7d7;
  box-shadow: 3px 3px 8px black;
  border-radius: 10px;
}
.flex-container > div:hover {
	background-color: white;
	box-shadow: 5px 5px 8px black;
	color: black;
	border: solid green 1px;
	cursor: pointer;
}
#acts28 {
   font-size: 26px; 
   font-weight: bold;
}

@media only screen and (max-width: 1000px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
   
   h1 {
      font-size: 30px;
   }
   
   h3 {
      font-size: 25px;
   }
   
   #content-area {
      width: 95%;
   }
   
   .btn {
      font-size: 23px;
      padding: 10px;
   }
   .flex-container > div {
		width: 100%;
	}
   
   p,li,ul,input[type=text], textarea, input[type=email],input[type=password],input[type=number],input[type=date] {
      font-size: 23px;
   }
   
   #content-area {
      padding: 20px;
   }
   
   #footer {
      font-size: 20px;
      margin-bottom: 0px;
   }
   
   #acts28 {
      font-size: 20px; 
      font-weight: bold;
   }
}