html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


@font-face {
  font-family: "android";
  src: url("../fontes/idroid.otf") format("opentype");
  font-weight: normal;
}

:root {
  --corFundo: rgb(132, 225, 173);
  --corLinks: #FFFFFF;
  --corRodape: rgb(17, 216, 76);
}


body {
  background-color: var(--corFundo);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


#cabecalho {
  font-weight: 600;
  max-width: 100vw;
  max-height: 100vh;
  padding: 17px;
  text-align: center;
  background-image: linear-gradient(180deg, rgb(57, 206, 124), rgb(20, 95, 64));
}

#cabecalho h1 {
  margin: 0;
  padding: 17px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  font-size: 35px;
  text-align: center;
}

#cabecalho p {
  font-weight: normal;
  font-size: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  text-align: center;
}

#menu {
  padding: 10px 0px 0px 0px;
}

#menu a {
  color: var(--corLinks);
  font-size: 20px;
  text-decoration: none;
  padding: 0px 12px 0px 0px;
  transition: color 0.2s ease;
}

#menu a:hover {
  color: rgb(26, 207, 132);
}


#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 300px;
  max-width: 1000px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.29);
  margin: auto;
  background-color: aliceblue;
}

section .imagem {
  margin: auto;
  display: flex;
  max-width: 100%;
 
}

#container section h1 {
  margin: 0;
  font-size: 30px;
  padding-top: 10px;
  font-family: "android";
  color: rgb(20, 95, 64);
  font-weight: normal;
}

#container .sub-texto {
  font-family: "android";
  color: rgb(3, 73, 13);
  background-image: linear-gradient(to right, rgb(8, 165, 47), transparent);
  text-indent: 10px;
  font-weight: normal;
}

#container strong {
  color: rgb(20, 95, 64);
}

#container section p {
  text-align: justify;
  text-indent: 45px;
  line-height: 2em;
  padding: 17px;
}

h3 {
  padding: 14px 23px;
  margin: 0px 0px;
  color: white;
  background-color: rgba(30, 175, 86, 0.781);
  border-radius: 20px 20px 0px 0px;
}

#extra p {
  padding: 15px;
  padding: 17px;
}

#extra {
  margin: 10px;
  background-color: rgba(124, 243, 178, 0.623);
  border-radius: 20px;
  box-shadow: 1px 3px 6px 0px rgb(0 0 0 / 32%);
  
}

span {
  font-weight: 700;
  color: rgb(26, 92, 56);
}

#container a {
  text-decoration: none;
  color: rgb(26, 92, 56);
  font-weight: 700;
}

#container a:hover {
  text-decoration: underline;
}

#video-youtube {
  width: 100%;
  height: 500px;
  background-color: rgb(26, 92, 56);
  margin: 20px 0px 20px 0px;
  position: relative;

}

#video-youtube iframe {
  position: absolute;
  background-color: rgb(26, 92, 56);
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
}

#extra ul {
  list-style: none;
  list-style-position: inside;
  columns: 2;
}

#extra ul li {
  line-height: 2em;
}

#rodape {
  background-color: rgb(26, 92, 56);
  color: white;
  text-align: center;
  margin: 20px 0;
  padding: 1px;
}

#rodape a {
  color: rgb(17, 216, 76);
}
