img {
    max-width: 100%;
}

.content a {
    text-decoration: underline;

}

img.page__container-logo {
    float: left;
    max-width: 200px;
    margin-right: 20px;
}

h1 {
    color: var(--grey-darker);
}

p, p a {
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 16px 0;
    text-align: justify;
}

.disclaimer {
    position: relative;
    padding: 8px 20px;
    background: var(--light-blue);
}
p.disclaimer::before {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 100%;
    top:0;
    left: 0;
    background-color: var(--navy-blue);
}

.content .button {
  margin-top: 16px;
  margin-right: 16px;
  display: inline-block;
  padding: 0.6em 1.2em;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  background-color: var(--light-grey);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.content .button:hover {
  background-color: var(--hover-background);
  border-color: var(--grey);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.content .button:active {
  transform: scale(0.98);
}

.center-button {
  text-align: center;
  margin-top: 1rem;
}