* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

/* menu */

header {
    width: 100%;
    background-color: white;
    color: white;
    padding-block: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 2rem;
}

.logos {
    height: 3rem;
}

ul {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    padding-inline: 2rem;
    list-style-type: none;
}

a {
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: bold;
    color: rgba(28, 28, 28, .6);
    text-decoration: none;
    cursor: pointer;
}

/* INICIO */

#fondo {
    width: 100%;
    height: 100vh;
    background-image: url("./img/old-town-panama1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    z-index: -1;
    top: 0;
    transition: 1.8s ease;
}

/* PAGES */

.fondo-pages {
    width: 100%;
    height: 100vh;
    background-image: url("./img/buildings.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    z-index: -1;
    top: 0;
}


/* main */
main {
    font-family: sans-serif;
    box-shadow: 5px 5px 10px rgba(138, 138, 138, 0.5);
    width: 1000px;
    padding: 5rem;
    margin: 5rem;
    background-color: rgba(255, 255, 255, 0.8);
}

.titulo {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(28, 28, 28, .6);
}

.texto {
    display: flex;
    gap: 2rem;
    justify-content: center;
    text-align: justify;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(28, 28, 28, .6);
    margin-block-start: 1em;
}

/* pie */
footer {
  width: 100%;
  background-color: black;
  color: white;
  padding-block: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 2rem;
  bottom: 0; }

.pie {
    font-size: 1rem;
    color: gray;
}

/* PROYECTOS */

.fotos {
  width: 50%;
  border-radius: 2rem;
}

.descripcion {
    margin-block: 1rem;
}

.proyecto {
    align-items: center;
}