body {
      font-family: helvetica;
      margin: 0;
}

#homepage {
      background-image: url('https://raw.githubusercontent.com/myxine-glutinosa/myxine-glutinosa.github.io/working-branch/wavy-cyan-tile.jpg');
      background-repeat: repeat;
}

#eyes-page {
      background-color: rgb(214, 234, 233)
}

#fossils-page {
      background-color: rgb(235, 227, 213)
}

#websites-page {
      background-color: rgb(214, 219, 234)
}

#papers-page {
      background-color: rgb(234, 224, 214)
}

.header {
    text-align: center;
    padding: 1px;
    background-color: rgb(174, 153, 255);
    color: white;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}

.content {padding:20px;}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  padding: 10px;
  height: auto;
  width: 100%;
  justify-content:center;
  align-items: center;
}

.box {
  flex: 0 1 calc(16.66% - 1em);
  height: 100px;
  background-color: rgb(255 153 251);
  font-family: helvetica;
  color: black;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.box:hover {
  background-color: rgb(255, 225, 153);
}

table, th, td {
  border: 1px solid;
  background-color: rgb(247, 247, 247);
}


* {
    font-family: helvetica;
  }
