* {
    margin: 0;
    padding: 0;
}

nav {
    /* padding: 0 4%px; */
    margin: 0;
    background-color: #075678;
    display: flex;
    justify-content: center;
}

nav li {
    display: inline-block;
    text-decoration: none;
    padding: 24px 12px;
}

nav ul li a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1em;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

header {
    text-align: center;
    background: url(../img/Triangles.png) rgba(27,27,27,0.75); width: 100%;
    background-blend-mode: multiply;
    background-size: cover;
    padding-top: 25vh;
    height: 75vh;
    justify-content: center;
    align-items: center;
}

section {
    margin: 0;
    padding: 50px 250px 30px;
    background-color: rgb(255, 255, 255);
}


h1 {
    font-size: 6rem;
    font-weight: 800;
    color: whitesmoke;
    text-transform: uppercase;
    margin-bottom: 60px;
}

h2 {
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
}

h3 {
    font-size: 1.7rem;
    color: #0981b4;
    margin-top: 24px;
}

h4 {
    font-size: 1.7rem;
    color: #000000;
    margin-top: 24px;
    text-align: center;
}

h5 {
    font-size: 1.2rem;
    color: darkblue;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.art {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
  }
  
  .art-item {
    width: 30%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .art img {
    width: 100%;
    height: auto;
  }
  
  .art-item p {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
    text-align: center;
  }

  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .image {
    width: 30%;
    margin-bottom: 20px;
  }
  
  .image img {
    width: 100%;
    height: auto;
  }
  
  .image p {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
    text-align: center;
  }

footer{ 
    background-color: #1e1e1c;
    color: white;
    text-align: center;
    height: 100px;
}

@media only screen and (max-width: 390px) {
    header {
        padding: top 40vh; ;
    }    
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 8px;
        text-align: center;
    }

    h3 {
        font-size: 1.5rem;
        color: #0981b4;
        margin-top: 24px;
    }

    nav li {
        padding: 24px 8px;
    }

    nav ul li a {
        font-size: 1rem;
    }

    section {
        padding: 24px 14px 5px;
    }
}
