
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
}
body{
    background:#FCF3EA;
    
}
a, a:hover{
    -webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
header{
    display: block;
    position: fixed;
    width: 100%;
    height: 50px;
    box-shadow: 0 2px 8px 2px rgba(95,84,73,0.3);
    font-family: Barlow, sans-serif;
    background:#FCF3EA;
}
.spacer{
    display: block;
    height: 50px;
    width: 100%;
}
.titulos{
    display: block;
    margin-top: 50px;
    font-size: 2em;
    font-weight: 500;
    color: #5F5449;
}
.circ{
    display: block;
    margin: 0 auto;
    border-radius: 100px;
    max-width: 250px;
    height: auto;
}
nav{
   display: block;
   margin-top: -50px;
   padding-right: 2.5%;
}
nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
  }
  nav ul li a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: black;
}
nav ul li a:hover {
    color: #5F5449;
    text-decoration: underline;
}
.titulo{
    height: 50px;
    width: auto;
    line-height: 50px;
    padding: 0 5%;
    font-size: 1.2em;
}
.titulo2{
    width: auto;
    line-height: 58px;
    padding: 0 1%;
    font-size: 0.55em;
    display: none;
    
}
.contenedor h1{
    text-align: center;
    color: #22577a;
    font-size: 5vw;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 100vh;
}
.port{
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    .titulo{
        display: none;
    }
    .titulo2{
        display: block;
    }
    nav{
        margin-top: -52px;
        padding-right: 1%;
     }
     nav ul {
         font-size: 0.8em;
       }
       nav ul li a {
         display: block;
         padding: 0.8rem;
     }
     .titulos{
        margin-top: 30px;
        font-size: 1.8em;
    }
}