@font-face {
  font-family: 'Futura';
  src: url('../fonts/Futura Book font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
background-image: url("img/website sculpture tile.png");
background-color: #000000;
background-repeat:repeat;
background-size: 100vw;
color: white;
font-family: "Futura";
font-size: 24px;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
image-rendering: pixelated;
}

.mouth {
  width: 100vw;
  height: 20vh;
  display: inherit;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.button {
border-radius: 25px;
max-width: 60vw;
}

.menu {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 6.5%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.items {
  color: #DB1A31;
  background: black;
  padding: 0.6vw;
  border-radius: 4px;
  font-size: 2vw;
  z-index:3;
  display: flex;
  justify-content: center;
  align-items: center;
}


.items:hover {
  background: white;
  color: black;
}


.middle {
position:relative;
margin-left: 20%;
margin-right: 20%;
text-align: center;
}

@media screen and (max-width: 800px) {
body {
  background-image: none;
}

.mouth {
  display: none;
}

.middle {
margin-left: 10%;
margin-right: 10%;
}

.button {
  max-width: 80vw;
  border-radius: 0;
  pointer-events: none;
}

.menu {
  position: fixed;
  top: 0%;
  left: 50%;
  height:auto;
  transform: translate(-50%, 0%);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  z-index: 10;
}

.items {
  width: 33%;
  height: 80px;
  border: none;
  border-right: 1px solid white;
  border-radius: 0;
  font-size: 6vw;
  color: white;
}
}

a {
color: white;
text-decoration: none;
}