*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0;
}
/* .font-roboto-mono {
font-family: "Roboto Mono", monospace;
} */
.container {
  /* max-width: 700px; */
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.logo-wrapper {
  width: 100%;
}
#logo {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}
.logo-description {
  font-family: "Roboto Mono", monospace;
  font-size: 1.7rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #68a4c5;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s;

  &:hover {
    opacity: 0.5;
  }
}
