
@import url('https://fonts.googleapis.com/css2?family=Eater&family=Silkscreen:wght@400;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  background-color: lightpink;
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

div.layout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;   
}


div#button-holder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 0px;
}


div#button-holder button {
  background-image: url("assets/field.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  width: 180px;
  height: 50px;

  border: none;
  outline: none;

  color: white;
  font-family: 'Silkscreen', sans-serif;
  font-size: 14px;

  cursor: pointer;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);

  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

div#button-holder button:hover {
  background-image: url("assets/bar_1.png");
}

div#button-holder button:active {
  transform: translateY(2px);
}

div.page-text {
  padding-left: 40px;
  margin-top: 20px;
}

