html, body {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  background: rgba(85, 86, 90, 1);
  color: #e6e6e6;

  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;

  overflow: hidden;

  -webkit-font-smoothing: antialiased;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 15vh auto 0 auto;
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
}

.container img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.container h2 {
  text-align: center;
  margin: 0 0 5px 0;
  font-weight: 500;
}

.container a {
  text-decoration: none;
  color: #e6e6e6;
  padding: 25px 35px;
  border: 2px solid #e6e6e6;
  border-radius: 100px;
  transition: 0.5s all;
  font-weight: 500;
}

.container a:hover {
  background: #e6e6e6;
  color: #000;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  padding: 20px 20px;
  font-size: 14px;
}
