* {
  box-sizing: border-box;
}


/* Style tab links */
.tablink {
  background-color: grey;
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 100%;
  width: 25%;
}

.tablink:hover {
  background-color: #777;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  color: #0f0f12;
  display: none;
  padding: 20px 20px;
}

#About {background-color:white;}
#News {background-color: white;}
#Note {background-color: white;}
#Results {background-color: white;}

/* Float Six columns side by side */
.column {
  float: left;
  width: 16.33%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {
    margin: 0px 0px;
    padding-top:20px;
    padding-left:10px;
    width:100%;
    background-color:white;   
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
.ccolumn90 {
  float: center;
  width: 100%;
  padding: 10px 10px;
}

.bcardright1 {
  /* Add shadows to create the "card" effect */
  background-color:#EEEDE7;
  padding: 5px 5px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  animation-name: slidein1;
  animation-duration:1s;
}
.reveal{
  position: relative;
  background-color: white;
  transform: translateX(50px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateX(0);
  opacity: 1;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 100%;
  margin: auto;
  text-align: center;
  background-color: white;
  animation-name            : fade      , shrink    ;
  animation-duration        : 1.5s      , 2.53s     ;
}

@keyframes slidein1 {
    from {
        margin-left: -100%;
        width:100%;
      }
    to{margin-left:0%;
        width:100%;
    }
    
}

@keyframes fade {
    from { opacity   : 0.25; }
    to   { opacity   : 1; }
}
@keyframes shrink {
    from { transform : scale(0.25); }
    to   { transform : scale(1); }
}

@keyframes slidein {
    from {
        margin-left: 100%;
        width:100%;
      }
    to{margin-left:0%;
        width:100%;
    }
    
}
@keyframes slidein {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.title {
  color: grey;
  font-size: 100%;
}

button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color:#e0e0eb;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 100%;
}

button:hover, a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .column {
    width: 100%;
  }
.tabcontent {
  height: 100%;
}
}


