@font-face {
  font-family: "Formula Medium";
  font-style: normal;
  font-weight: normal;
  src: local("PP Formula Medium")
  url("/static/PPFormula-Medium.woff2") format("woff2");
}

@font-face {
  font-family: 'PP Editorial New';
  src: url('/static/PPEditorialNew-Ultralight.woff2') format('woff2'),
      url('/static/PPEditorialNew-Ultralight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Editorial New';
  src: url('/static/PPEditorialNew-Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
.container {
  max-width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto; /* Center the container horizontally */
  padding: 20px; /* Add some padding */
  max-width: 800px; /* Set a max-width */
  width: 100%; /* Make it responsive */
  box-sizing: border-box; /* Include padding and border in the container's total width */
}

h2 {
  font-family: "PP Editorial New";
  font-style: italic;
  font-size: 2em;
}

/* Optional: For smaller screens, you may want to reduce the padding */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
}


.inner-container {
  /* Any additional styling for inner-container */
  align-items: center;
  display: flex;
  flex-direction: column;
}

.flex-grid {
  display: flex;
}

.col {
  flex: 1;
}

@media (max-width: 768px) {
  .flex-grid {
    display: block;
  }
}

.headline {
  text-align: center;
  font-family: "PP Editorial New";
  font-style: italic;
  font-size: 4em;
}

.header {
  text-align: center;
  font-family: "PP Editorial New";
  font-size: 2em;
}

.contact {
  text-align: center;
  font-family: "PP Formula Medium";
  font-weight: 300;
}

p {
  font-family: "PP Formula Medium";
  font-weight: 300;
}

table, th, td {
  border: 1px solid;
  padding:2px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: goldenrod;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.button:hover {
  /* background-color: rgb(249, 148, 23); */
  /* transform: scale(1.05); */
  translate: -3px -3px;
  box-shadow: 3px 3px 0 goldenrod; /* increase shadow offset on hover */
}

.highlightbox {
  border: 3px solid black;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 8px 8px 0 black;
}