html, body{
    font-family: 'Montserrat', sans-serif;
    margin: 0; height: 100%;
}

#header{
    width:150px;
    position: absolute;
    top: 20px;
    left: 20px;
}

#background{
    position:relative;
}

#central_text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }

  #central_text h1 {
    font-size:large;
    font-weight: 200;
  }
  #central_text h2{
    font-size: 300%;
    font-weight: bolder;  
    text-shadow: 1px 1px 2px #000;
  }

  #central_text h1,   #central_text h2 {
    margin: 0px;
    padding: 0px;
  }
  


  /*footer*/

  *{box-sizing:border-box;}

		.container{
	
		}

		.social{
			/*las imágenes usadas tienen width de 48px*/
			width:48px;
			position:fixed;
			top:50px;
			right:20px;
		}
    /* Extra centrado vertical*/

		.social{
			/*border:1px solid #000;*/
			top:50%;
			height:205px;
			/*para poner height 192 deberíamos haber indicado en el reset de estilos font-size:0;*/
			margin-top:-100px;
		}
    .social a img{
      width:45px;
      padding: 5%
    }

    #footer{
      margin-top: -0.5%;
      background-image: linear-gradient(#F64862, #FF9840);
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    #footer .logo{
      width: 200px;
    }
   .footersocial{
      display: flex;
      flex-direction: row;
      width: 30%;
      justify-content: center;
		}

   .footersocial a img{
      width:45px;
      padding: 5%
    }



    /*Mobile*/

    @media (max-width: 500px) {
      section h2{
        margin-left: 15px;
      }


      #background{
        min-height: 500px;
        height: 100vh;
      }

      .social{
        top:30%;
        height:180px;
        right:5px;
  
      }
      .social a img{
        height: 30px;
        object-fit: contain;
      }
    
    }