/* start font import */
.dm-mono-light {
    font-family: "DM Mono", monospace;
    font-weight: 300;
    font-style: normal;
  }
  
  .dm-mono-regular {
    font-family: "DM Mono", monospace;
    font-weight: 400;
    font-style: normal;
  }
  
  .dm-mono-medium {
    font-family: "DM Mono", monospace;
    font-weight: 500;
    font-style: normal;
  }
  
  .dm-mono-light-italic {
    font-family: "DM Mono", monospace;
    font-weight: 300;
    font-style: italic;
  }
  
  .dm-mono-regular-italic {
    font-family: "DM Mono", monospace;
    font-weight: 400;
    font-style: italic;
  }
  
  .dm-mono-medium-italic {
    font-family: "DM Mono", monospace;
    font-weight: 500;
    font-style: italic;
  }

  .just-me-again-down-here-regular {
    font-family: "Just Me Again Down Here", cursive;
    font-weight: 400;
    font-style: normal;
  }
  
/* end font import */  

body {
    /* text stuff */
    font-family: "DM Mono", monospace;
    text-align: center;
    color: #12130F;

    /* format */
    background-color: #F5F3F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-left: 5vh;
    padding-right: 5vh;
}

button {
    font-family: "DM Mono", monospace;
    background-color: #12130F;
    border: none;
    color: #F5F3F5;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
}

button:hover {
    background-color: #5B9279;
}

button.selected {
  background-color: #5B9279;
}

#next-btn {
  background-color: #F5F3F5;
  color: #5B9279;
}

#next-btn:hover {
  background-color: #F5F3F5;
  color: #5B9279;
  text-decoration: underline;
}

.button-container {
  display: flex;
  flex-direction: column;
}

h1 {
  font-family: "Just Me Again Down Here", cursive;
  a {
    color: #12130F;
    text-decoration: none;
  }
}