@font-face {
  font-family: Futura;
  src: url("./Futura-Medium.woff") format("woff");
}

body {
  /* background-image: url("img/background.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover; */
  font-family: "Futura", sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/background.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: bottom right;
  opacity: 0.1; /* Set your desired opacity */
  z-index: -1; /* Ensure the pseudo-element is behind the content */
}

#mainTable {
  font-size: 19px;
  text-align: center;
  vertical-align: middle;
  border-collapse: separate;
  border-spacing: 10px 5px;
  width: 100%;
  table-layout: fixed;
}

#leftField {
  height: 150px;
  border: 1px solid #000;
  cursor: pointer;
}

#rightField {
  height: 150px;
  border: 1px solid #000;
  cursor: pointer;
}

.middleField {
  width: 120px;
  height: 70px;
  border: 1px solid #000;
  cursor: pointer;
}

a {
  color: #a185c6;
  text-decoration: none;
}

a:hover {
  color: #8f8f8f;
}

button {
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  color: black;
  border: 1px solid black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}
