body,
html {
  margin: 0;
  padding: 0;
}

/* colors */
:root {
  --primary-color: #4d952aff;
  --secondary-color: #5A0149; /* #e3726a;*/
  --neutral-color: #dddddd;

  --primary-text-color: #09784d;
  --secondary-text-color: #333;
  --text-color: #333;
  --link-color: #9c097d;
  --background-color: white;
  --max-page-with: 980px;

  font-optical-sizing: none;
  font-variation-settings: 'opsz' 16;
}
.primary {
  color: #1f452b;
}
 
header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  justify-content: center;
  background: white;
  background: var(--secondary-color);
  color: white;
  padding: 12px;
  background: #5A0149;
  background: linear-gradient(90deg,rgba(90, 1, 73, 1) 0%, rgba(118, 18, 99, 1) 47%, rgba(20, 7, 34, 1) 100%);
}

header img,
header picture {
  max-height: 80px;
  width: auto;
  max-width: 100%;
}

.logo {
  letter-spacing: 3px;
}


.nav {
  display: flex;
  justify-content: space-around;
  width: 30%;
}

.navlink {
  list-style: none;
  margin: 0;
}

.navlink a {
  color: #ccc;
  text-decoration: none;
  font-size: 1.2em;
}

.burger {
  font-size: 1.2em;
  display: none;
  cursor: pointer;
}

.burger > .bar1,
.burger > .bar2,
.burger > .bar3 {
  width: 35px;
  height: 5px;
  background-color: var(--text-color);
  margin: 6px 0;
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change > .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

@media screen and (max-width: 678px) {
  .burger {
    display: inline-block;
  }
  .nav {
    margin: 0;
    background: #343434;
    position: absolute;
    right: -100%;
    top: 70px;
    width: 50%;
    height: calc(100% - 70px);
    flex-direction: column;
    justify-content: space-around;
    padding: 0;
    transition: all 400ms;
  }
  .navlink {
    text-align: center;
  }

  .nav-active {
    right: 0;
  }
}

.nav,
.burger {
  display: none;
}

body {
  font-family: "Nunito", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text-color);
  background-repeat: repeat;
  background-size: auto;
  background-position: center center;
  line-height: 1.6;
}

@media (max-width: 960px) {
  body {
    font-size: 17px;
  }
}

main {
  width: 100%;
  max-width: 1184px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  padding-top: 3em;
  margin-bottom: 3em;
  padding-left: 12px;
  padding-right: 12px;
}

h1 {
  color: var(--text-color);
  margin-bottom: 0.75em;
  margin-top: 2em;
  font-size: 30px;
}

h2 {
  color: var(--secondary-text-color);
  font-size: 26px;
}

.side-image {
  display: flex;
  justify-content: center;
}

img {
  width: clamp(0em, 90vw, 800px);
  height: auto;
  max-width: 100%;
}

img.small {
  max-width: 100%;
  height: clamp(10px, 3em, 100px);
  width: auto;
}

img.tiny {
  max-width: 100%;
  height: clamp(10px, 2em, 50px);
  width: auto;
}
.section:nth-child(even) {
  border-top: 1px solid grey;
  padding-bottom: 3em;
}

.section {
  width: 100%;
  margin-bottom: 3em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-direction: row;
  gap: 1em;
}

.border-bottom {
    border-bottom: 1px solid grey;
}

.border-top {
    border-top: 1px solid grey;
}
@media (max-width: 960px) {
  body {
    font-size: 17px;
  }
  main {
    padding-top: 1em;
  }
}

@media (max-width: 660px) {
  .section {
    display: block;
    padding-left: 0.1em;
    padding-right: 0.1em;
  }
}

footer {
  border-top: 1px solid grey;
  margin-top: 3em;
  padding-top: 1em;
}

footer ul {
  list-style: none;
}

 