html {
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'TWK Haufe Akademie Everett', Arial, Helvetica, sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: var(--color-font);
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 16px;
}

:root {
  --color-background: #f5f5f5;
  --color-font: rgba(0, 0, 0, 0.91);
  --color-footer: rgb(25, 3, 51);
  --color-primary: #6f01f5;
  --border-radius: 12px;
}

/* ################################## */

html,
body {
  height: 100%;
  background-color: var(--color-background);
}

body {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 0 auto;
  padding: 0px 20px;
}

a {
  color: var(--color-primary);
}

.logo-header {
  display: inline-block;
  margin: 17px 40px;
}

.hero {
  background: var(--color-primary);
  margin-bottom: 50px;
  padding: 40px;
  border-radius: var(--border-radius);
}

.hero h1 {
  font-weight: 500;
  color: white;
  font-size: 2.5rem;
  line-height: 2.75rem;
}

.container {
  max-width: 1170px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
}

.container h3 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.375rem;
}

.box {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  border: 1px solid #dbdbdb;
}

footer {
  background: var(--color-footer);
  padding: 50px 40px;
  margin-top: 50px;
  color: white;
}

.footer-logo {
  display: inline-block;
}

.footer-links-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

footer .links a {
  color: white;
  padding-right: 16px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

footer .socialmedia-links a {
  display: inline-block;
  margin-left: 16px;
}

footer .socialmedia-links a:first-child {
  margin-left: 0;
}

hr {
  margin-top: 25px;
  margin-bottom: 25px;
  opacity: 0.5;
}

.badge-container {
  display: flex;
}

.badge-img {
  margin-right: 50px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-content {
  flex-grow: 1;
}

.badge-description {
  margin-top: 10px;
  margin-bottom: 30px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .badge-container {
    flex-direction: column;
  }

  .badge-img {
    margin-bottom: 30px;
    align-self: center;
    margin-right: 0;
  }

  .footer-links-container {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }

  .footer-links-container .links {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  .container h3 {
    font-size: 1.5rem;
  }
}

.button-download {
  padding: 16px 24px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  display: inline-block;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: white;
  width: 100%;
}

.button-download:hover {
  background-color: #4c06a1;
}
