* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  color: #2c2c2c;
  display: flex;
  flex-direction: column;
}

body,
input,
button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}

section,
footer {
  padding: 60px 15%;
  display: flex;
  flex-direction: column;
}

section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

section#home {
  background: #017965;
  color: #fff;
}

a.btn {
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 30px;
  max-width: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #fff;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  margin: 30px 0;
  transition: all ease 0.7s;
  background: transparent;
}
a.btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

div.logosArea {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -60px;
}
div.logosArea img {
  width: 165px;
  margin-bottom: -15px;
}

h1#agenda {
  margin-top: 30px;
}

img#banner {
  max-width: 100%;
  width: 100%;
  height: auto;
}

#tableArea {
  display: flex;
  flex-direction: column;
  margin: 30px auto;
  max-width: 620px;
  width: 100%;
}

.tableTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100px;
  margin-bottom: 10px;
}

.tableItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  border-bottom: 1px solid #2c2c2c;
  padding: 10px 0;
}

p.green {
  color: #017965;
  font-weight: bold;
}

p.date {
  font-weight: bold;
}

footer {
  background: #232f3e;
  color: #fff;
  padding: 30px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  img#banner {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
