* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #252525;
  color: #edecec;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

h1 {
  font-size: clamp(2rem, 6vw + 1.5rem, 4rem);
}

h2 {
  font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
  color: #bdbcbc;
}

h1, h2, footer{
    text-align: center;
}
.container{
    margin-top: 15rem;
    
}

.subtext{
    margin-bottom: 3em;
}
.footer,
.subtext h2 {
  font-weight: 100;
}

footer{
    margin-top: auto;
    margin-bottom: 4em;
}