* {
  background-color: rgb(1, 0, 16);
  color: whitesmoke;
  font-size: 16px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid green;
  box-shadow: 0px 4px 4px yellow;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Eagle Lake', cursive;
  color: green;
  margin: 0;
  padding: 0;
}

header h1 {
  font-family: 'Eagle Lake', cursive;
  text-shadow: 2px 2px 4px yellow;
  font-size: clamp(16px, 7vw, 56px);
  font-weight: bold;
  padding: 1rem 0px;
  -webkit-text-stroke: 0.1px rgb(209, 207, 207);
}

h2 {
  font-size: clamp(14px, 3.5vw, 24px);
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  text-align: center;
}

.main-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  /* background-color: red; */
  /* border: 20px solid red; */ 
  margin: 60px auto auto auto;
  max-width: 600px;
}

.panel {
  display: flex;
  flex-direction: column;
  min-height: 100px;
  min-width: 100px;
  align-items: center;
  justify-content: flex-start;
  height: calc(100vw / 2 - 20px);
  max-height: min(280px, calc((100vh - 200px)/2));
  opacity: 0;
  transition: opacity 1s;
}

.panel.show {
  opacity: 100%;
}



















/* .sofia {
  font-family: "Princess Sofia", cursive;
  font-size: 54px;
}
.eagle {
  font-family: "Eagle Lake", cursive;
}
.fraktur {
  font-family: "UnifrakturCook", cursive;
}
.bilbo {
  font-family: "Bilbo", cursive;
}
.rocker {
  font-family: "New Rocker", cursive;
} */

/*font-family: 'Bilbo', cursive;
font-family: 'Eagle Lake', cursive;
font-family: 'New Rocker', cursive;
font-family: 'Princess Sofia', cursive;
font-family: 'UnifrakturCook', cursive;
font-family: 'UnifrakturMaguntia', cursive;*/
