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

body {
  background-color: white;
  font-family: sans-serif;
  padding: 0;
  margin: 0;
  line-height: 1.5;
}

.default-page-main {
  gap: 4%;
  display: flex;
  padding: 2%;
  color: #58595b;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h1,
h2 {
  margin: 0;
  font-weight: normal;
}
h1 {
  margin-bottom: 2em;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  font-size: 26px;
}
h2 {
  font-size: 20px;
  color: #ee1d24;
  font-weight: bold;
  margin-top: 2em;
}

h3 {
  font-size: 16px;
  font-weight: bold;
}
.text-content {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  padding: 0 1em;
  a {
    color: #ee1d24;
    text-decoration: none;
  }
  > div {
    flex: 0 1 auto;
  }
}

.svg-container {
  max-width: 250px;
}
.svg-container svg {
  width: 100%;
  display: block;
  height: auto;
}

.img-content {
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 2rem 0;
}

footer {
  background-color: #ee1d24;
  padding: 2em;
  color: white;
  text-align: center;
  a {
    color: white;
    text-decoration: none;
  }
}

@media (min-width: 768px) {
  .text-content {
    flex-direction: row;
    padding: 0;
    max-width: 900px;
    gap: 10dvw;
  }
}
