* {
  transition-delay: 0;
  transition-duration: 0.1s;
  transition-property: all;
  transition-timing-function: ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Colfax Regular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.container {
  background: #fff;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  border-top-left-radius: 4px;
  border-right: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  border-bottom-right-radius: 4px;
  box-shadow: 6px 6px 0px 0px #a5daf0;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
}
h1 {
  font-size: 3rem;
  color: #000;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
}
.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}
a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.6rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.1s ease;
  border: 1px solid #000;
  border-radius: 2px;
  box-shadow: 2px 2px 0px 0px #000;
}
a:hover {
  box-shadow: 4px 4px 0px 0px #000;
  transform: translateY(-1px);
}
@media screen and (max-width: 767px) {
  body {
    padding: 1rem;
  }
  .container {
    padding: 2rem;
  }
  h1 {
    font-size: 2.25rem;
  }
  p {
    font-size: 1rem;
  }
}
