/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color:  #ffe6ff;
  color: black;
  font-family: "Comic Sans", sans-serif;

  
}
.table, th, td {
  border: 1px solid;
}

.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

.header {
  padding: 0px;
  text-align: center;
  background:  #ffb3ff;
  color: black;
  font-size: 30px;
}

.sticky {
  position: fixed;
  top: 1;
  width: 100%
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

.button:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

a:link { 
  
  color: #cc0000;
}

a:visited {
  
  color:#cc0066;
}

a:focus {
  
 
  color: #cdfeaa;
  background:  #cc0000;
}
 
a:hover {
  text-decoration: none;
  background: #cdfeaa;
}

a:active {
  
  
  background:    #000000;
  color: #cdfeaa;
}

::selection {
  background: #ff33cc;
  color: #ffffff;
}
