@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 {
   min-height: 100vh;
   background-color: bisque;
   font-family: "Oswald", sans-serif;
   margin: 0px 0px 40px;
}

h1 {
   font-size: 40px;
}

h2 {
   font-size: 30px;
}

h3 {
   font-size: 25px;
}

p, input, select, td, textarea {
   font-size: 20px;
   font-family: "Oswald", sans-serif;
   margin-bottom: 5px;
   margin-top: 0px;
}

input[type=text], input[type=password], input[type=date], input[type=email], input[type=number], select, textarea {
   width: 100%;
}

input[type=checkbox], input[type=radio] {
   width: 20px;
   height: 20px;
}

input[type=submit] {
   color: black;
}

.btn{
   background-color: lightgoldenrodyellow;
   border: solid black 1px;
   border-radius: 5px;
   box-shadow: 5px 5px 10px black;
   font-family: "Oswald", sans-serif;
   margin: 5px 5px 5px;
   font-size: 20px;
   width: 250px;
   height: 45px;
}

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

tr:nth-child(even) { background-color: whitesmoke; }
tr:nth-child(odd) { background-color: aquamarine; }

table {
   border: solid black 2px;
   box-shadow: 0px 0px 20px #1A1A1A;
   margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
	
  [class*="col-"] {
    width: 100%;
  }
   
   h1 {
      font-size: 28px;
   }
   
   td {
      font-size: 16px;
   }
   
}