@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
  margin: 12% 0 0 0;
  min-height: 100vh;
  background: linear-gradient(45deg, #a02604, #c85c19);
  background-size: 400% 400%;
  animation: gradientShift var(--gradient-speed, 20s) ease infinite;
  font-family: "Lato", sans-serif;
  color: #fff;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

strong {
    font-weight:700;
    font-size:28px;
}

p {
    font-size:22px;
    line-height:1.7em;
}

p:first-child {
  margin-top: 0;
}

.smaller {
  font-size:18px;
}

a:link, a:visited {
  line-height:1em;
  color:#fff;
  text-decoration: none;
}

a:hover, a:active {
  color:#000;
  text-decoration: none;
}

footer {
    font-size:13px !important;
    line-height:1.5em;
    text-align: center;
    padding-top:100px;
    margin-bottom:100px;
}



.responsive-container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  align-items:flex-start;
  gap: 2rem;
  padding: 0 1.5rem;
}

.responsive-container__left {
  flex: 0 1 380px;
  max-width: 380px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

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

.responsive-container__right {
  flex: 1 1 570px;
  min-width: 0;
}

/* Stack at 1024px and below */
@media (max-width: 1024px) {

body {
  margin: 2% 0 0 0;
  }

  .responsive-container {
    flex-direction: column;
    align-items: center;
    gap:0;
  }

  .responsive-container__left {
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .responsive-container__logo {
    margin: 0 auto;
  max-width: 150px;
  width: 100%;
  }

  .responsive-container__right {
    width: 100%;
    border-top:1px solid #bb7861;
    padding-top:50px;
  }
}