:root {
  --font-color: #545454;
  --background-color: #ffffff;
  --secondary-color: #bcc095;
}

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--font-color);
  background-color: var(--background-color);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: disc;
}

main {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  max-width: 100vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}


@media screen and (max-width: 576px) {
  .content {
    /* grid-template-columns: 1fr; */
    display: block;
  }
}

.content.top {
  flex: 2 1 auto;
  max-width: 100vw;
}

.content.top>.left {
  margin: auto;
  /* width: 500px; */
  max-width: 500px;
  width: 50vw;
  height: 100%;
  background-image: url('media/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.content.top>.right {
  margin: auto;
  font-size: 1.25rem;
}

@media screen and (max-width: 576px) {
  .content.top>.left {
    width: 100vw;
    height: 50%;
  }

  .content.top>.right {
    padding-left: 32px;
  }
}

.content.top>.right li {
  color: var(--secondary-color);
  margin: 4px 0px 4px 32px;
}


.content.top>.right ul+h2 {
  padding-top: 16px;
}


.content.bottom {
  flex: 1 1 auto;
  width: 100vw;
  background-color: var(--secondary-color);
  padding: 32px;
}

.content.bottom>.right {
  text-align: right;
}



@media screen and (max-width: 576px) {
  .content.bottom>.right {
    text-align: left;
  }
}