html{
    overflow-x: hidden;
}

body{
    background-image: none;
    background-color: white;
}
.dados{
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
}

.containerDados{
    margin: 2em;
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  
}

#chartdiv {
    max-width: 50%;
    min-width: 500px;
    width: 100%;
    height: 650px;
   
  }

.dadosSexo{ 
  max-width: 500px;
  min-width: 150px;
  width: 100%;
  flex-direction: column;
  display: flex;
  gap: 1em;
  width: 100VW;
  align-items: center;
  justify-content: center;
 color: black;
 font-weight: bolder;
  height: 500px;
  display: none;
 
}

#homem{
    background-color: rgb(0, 140, 255);
   
}

#mulher{
    background-color: palevioletred;
   
}

.dadosS{
   
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: white;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.616);
}


.boxDados{
    border: 1px solid black;
    padding: 1em;
    background-color: aliceblue;
   border-top-left-radius: 10px;
   border-top-right-radius: 5px;
   border-bottom-left-radius: 5px;
   border-bottom-right-radius: 10px;
}