html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 18px;
  display: flex;
  flex-direction: column;
}

body {
  font-family: 'Roboto';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: rgb(26, 25, 30);
  color: rgb(234, 233, 236);
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  font-weight: bold;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 16px;
  max-width: 100%;
}

header h1 {
  font-size: 38px;
  font-weight: bold;
  color: rgb(227, 182, 180);
}

main {
  flex: 1;
  background-color: rgb(26, 25, 30);
}

footer {
  width: 100%;
  background: rgb(38, 36, 42);
  flex-shrink: 0;
}

.footer-content {
  display: flex;
  padding: 20px 32px 20px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
}

.company-info p {
  margin: 0;
}

.company-name {
  color: rgb(227, 182, 180);
  font-size: 18px;
  font-weight: bold;
}

button {
  font-family: 'Roboto';
  background-color: transparent;
  border: none;
  color: rgb(234, 233, 236);
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

button:hover {
  font-weight: bold;
}

.back-button {
  font-family: 'Roboto';
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  margin-left: auto;
}

.legal-notice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-notice-header h2 {
  font-size: 24px;
}