* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  background-color: #000;
  background-image: url('pattern.svg');
  font-family: Oswald;
  color: #fff;
}

.container {
  height: 105vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -5vh;
}

.text-main {
  /* font-family: Playfair Display; */
  font-family: sans-serif;
  font-size: 3rem;
  margin: 1rem
}
.slug{
  margin-bottom: 1rem;
  text-align: center;
}
a {
  color: #fff;
}
.meta {
    display: flex;
    justify-content: center;
    margin-top: -30px;
}
.meta a {
    text-decoration: none;
    margin: 0 10px;
}
.button_array {
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.work{
  text-transform: uppercase;
  margin: 2px 7px;
  border: 3px solid #fff;
  background: transparent;
  color: #fff;
  padding: .5rem 2rem;
  text-decoration: none;
}
.work:hover{
  background: #fff;
  color: #000;
  cursor: pointer
}
