*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body {
  background: rgb(1, 97, 28);
  background: radial-gradient(
    circle,
    rgba(1, 97, 28, 1) 0%,
    rgb(85, 106, 1) 100%
  ); 
  color: white;
}
/*https://cssgradient.io para extraer codigo con efectos */
main {
  width: 800px;
  margin: 10% auto ;
  display: flex;
  align-items: center;
}
.seccion1 {
  width: 65%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0 10px 10px 10px;
  border-radius: 8px;
}

h1 {
  text-align: center;
}
button {  
  width: 120px;
  height: 120px;
  color: white;
  cursor: pointer;
}
.seccion2 {
  background-color: rgba(255, 255, 255, 0.2);
  width: 35%;
  height: 400px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0 10px;
  align-content: center;
}
.estadisticas {
  border: 1px solid white;
  height: 105px;
  border-radius: 8px;
  padding: 8px 20px;
  box-sizing: border-box;
  margin: revert-layer;
}
img{
  width: 95%;
}
footer{
  font-size: 12px;
  font-weight: bold;
  max-width: 535px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.Footer{ 
  display: flex;  
  padding: 5px 5px 5px 5px;
  border-radius: 6px;
  margin: 20px 0;
  box-sizing: border-box;   
  justify-content: space-around; 
  align-items: center;
  flex-wrap: wrap; 
}
.linkedinImage{
  padding: 4px;
}
table{
  margin: auto;
}
@media (max-width: 730px) {
  main{
    width: 100%;
    margin: 0;
    margin-top: 8%;
    flex-direction: column;
    align-items: center;
  }
  .seccion1{
    width: 95%;
    padding: 0;
  }  
  .seccion2{
    width: 95%;
    padding: 0;
    border-radius: 8px;
    height: auto;
  }
  .estadisticas {
    width: auto;
    height: auto;
  }

}
@media (max-width: 520px) {
 
  button {  
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 470px) {
 
    button {  
      width: 100px;
      height: 100px;
    }
}

@media (max-width: 430px) {
 
  button {  
    width: 90px;
    height: 90px;
  }
  .seccion1, .seccion2{
    width: 100%;
  }
}

@media (max-width: 370px) {
    button {  
      width: 85px;
      height: 85px;
    }

}

