{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

.header {
    /* background-color: red; */
    background-color: #f4f4f4;
    height:100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(223, 223, 223);
    text-align: center;
    /* font-style: italic; */
     font-family: Helvetica;
    /* font-family: serif; */
     /* font-family: 'Tahoma', sans-serif; */
     /* font-family: Baskerville; */
     /* font-family: 'poppins', sans-serif; */
  }

  .footer {
    /* background-color: red; */
    background-color: #f4f4f4;
    height:100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(223, 223, 223);
    text-align: center;
    font-family: Helvetica;
  }

  .myDiv {
    /* border: 0px outset red; */
    /* background-color: lightblue; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Helvetica;
  }

.container {
    width: 80%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
    /* border: 2px solid black; */
    /* test */
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    /* grid-gap: 30px; */
}

.gallery img {
    width: 100%;
}