:root {
  --black: #191C19;
  --green: #16A648;
  --gray: #ADB3AB;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.main {
  background-image: url('../images/body-background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 120px;
}

.container {
 padding-left: 16px;
 padding-right: 16px; 
}

h1, h3 {
  font-weight: 700;
}

.logo {
  max-width: 250px;
}

.event {
  padding: 16px 24px;
  margin-bottom: 36px;
  color: white;
  background-image: url('../images/footer-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 600;
}

.event a {
  color: var(--green);
  text-decoration: none;
}

.cta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  padding-left: 0;
  margin: 24px 0;
}


.cta a {
  list-style: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--green);
  border-radius: 50px;
  color: var(--black);
  font-weight: 500;
}

.cta a:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: white;
}

.description p {
  line-height: 1.5;
}

@media screen and (min-width: 900px) {

  .description {
    width: 50%;
  }

}

@media screen and (min-width: 1200px) {

  .container {
    max-width: 1200px;
    margin: auto;
  }

} 