* {box-sizing: border-box}
body{
    font-family: sans-serif;
    background-color: #2a4a68;
    color: white;
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
    cursor: default;
}

.commands{
  color: #ed305f;
}

.comment {
  color: rgb(250, 178, 119);
  font-size: 15px;
}

h1{
  margin-top: 30px;
}



.header{
    box-shadow: 0 4px 8px 0 rgba(54, 151, 158, 0.438);
    position: relative;
    background-color: #142542;;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid rgb(66, 66, 66);

    transition: 1s;
    animation-name:rainbowShadow;
    animation-duration: 30s;
    animation-direction: initial;
    animation-iteration-count: infinite;

}
.header p{
    margin-left: 5%;
}
.header h2{
    margin-left: 5%;
}


hr{
    width: 50%;
    
}

/* Float four columns side by side */
.column {
    float: left;
    width: 33.33%;
    padding: 10px 10px;
  }
  
  /* Remove extra left and right margins, due to padding */
  .row {margin: 0 -5px;}
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive columns */
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
  }
  
  /* Style the counter cards */
  .card {
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.473);
    padding: 16px;
    text-align: center;
    background-color: #142542;
    border-radius: 10px;
    min-height: 250px;
    transition: 1s;
  }

  .card:hover{
    transition: 0.5s ease-in-out;
    transform: translateY(-10px);
  }

.btn{
    font-size: 15px;
    color: #fff !important;
	text-transform: uppercase;
	text-decoration: none;
	background: #ed3330;
	padding: 15px;
	border-radius: 5px;
	display: inline-block;
	border: none;
	transition: all 0.4s ease 0s;
}
.btn:hover{
    background: #434343;
	transition: all 0.4s ease 0s;
}


@keyframes rainbowShadow{
  100%,0%{
      box-shadow: 2px 5px 5px rgb(243, 116, 116);
  }
  8%{
      box-shadow: 2px 5px 5px rgb(247, 178, 109);
  }
  16%{
      box-shadow: 2px 5px 5px rgb(201, 201, 119);
  }
  25%{
      box-shadow: 2px 5px 5px rgb(195, 245, 146);
  }
  33%{
      box-shadow: 2px 5px 5px rgb(162, 231, 162);
  }
  41%{
      box-shadow: 2px 5px 5px rgb(147, 214, 101);
  }
  50%{
      box-shadow: 2px 5px 5px rgb(128, 206, 206);
  }
  58%{
      box-shadow: 2px 5px 5px rgb(136, 171, 206);
  }
  66%{
      box-shadow: 2px 5px 5px rgb(116, 116, 201);
  }
  75%{
      box-shadow: 2px 5px 5px rgb(153, 103, 202);
  }
  83%{
      box-shadow: 2px 5px 5px rgb(187, 104, 187);
  }
  91%{
      box-shadow: 2px 5px 5px rgb(134, 84, 109);
  }
}

.footer{
  background-color: #142542;
}

.footercolumn {
  float: left;
  width: 33.33%;
  padding: 10px;
  text-align: center;
}
.footercolumn a{
color: rgb(85, 53, 136);

}
.footercolumn a:hover{
color: rgb(154, 122, 206);

}


.footerrow:after {
content: "";
display: table;
clear: both;

}