* {
  box-sizing: border-box;
      cursor: pointer;
}

body {
  background-color: white;
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  color: black;
}

a {
  color: black;
}

main {
  margin: 15px;
}

.box {

font-family: "Space Mono", sans-serif;
font-weight: 400;
font-style: normal;

  width: 335px;
  height: 335px;
  padding: 10px;
  display: inline-block;
  border: 3px double black;
  font-size: 15px;
  margin: 5px;
  background-color: white;
  filter: drop-shadow(0 0 0.03rem black);
  vertical-align: top;
    line-height: 1.4;
    word-break: keep-all;
}
.box img{
width: 100px;
height: auto;
max-width: 100%;
margin: 30px 30px 30px 100px;
align-content: center;

}

.box:hover {
  filter: drop-shadow(0 0 0rem white);
}

#bio-button {
  display: block;
}

#bio-content {
  display: none;
}

#bio-link {
  text-decoration: none;
}

#bio-link:hover {
  font-style: italic;
}

#bio-text {
  margin-top:0;
}

.home-button {
  padding: 10px;
}

.home-button a {
  text-decoration: none;
}

.work p {
  padding: 10px;
  width: 50%
}

table, thead, tbody, tr, td {
  border: 1px white solid
}

thead {
  text-align: left;
}

th {
  font-weight: normal;
}

td, th {
  padding: 10px;
}

table {
  width: 50%;
  margin: 10px;
  border-collapse: collapse;
  border-spacing:0;
}

.currently {
  background-color: #30b353;
  color: black
}

.container {
  max-width: 50%;
  text-align: center;
  position: absolute;
  top:  50%;
  left: 50%;
  transform: translate(-50%,-50%);
  
}

@media (max-width: 600px) {
  table {
    width: 95%;
  }
}