* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

body {

 -webkit-font-smoothing: antialiased;


    text-align: center;
    background-image:
url("../img/fondo.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

body, input, button {
 font-size: 18px;
 font-family: 'Raleway', sans-serif;
 
}



  #estudios {
    color: white;
    background-color: #555;
    padding: 30px;
  }
  #estudios a{
      color: white;
      padding: 30px;
  }
 


  #contacto {
    color: white;
    background-color:#fdce06;
    padding: 30px;
  }
  #contacto a{
      color: white;
  }

  

header{
    background-color: white;
    padding: 33px;
}
.logo{
    width: 100%;
    max-width: 359px;
    margin-left: auto;
    margin-right: auto;
}

#contenedor{
    height: 500px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#contenedor a{
    text-decoration: none;
    margin: 5px;
}

#contenedor a:hover {
    background-color: gray;
  }

@media (max-width: 600px) {
    #contenedor{
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}



#footer{
    padding: 50px;
    background-color: #333;
    color: white;
}

#footer span{
    font-size: 14px;
}