/*......page reset......*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

/*    scroll-behavior: smooth; */
body {
  box-sizing: border-box;
}

body {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.6;
    color: white;
    background-color: #010205;
  }

  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom:  
20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content:  
center;
}

.gallery-item {
    width: auto;
    height: 150px;
    margin: 10px;
    border: 1px solid #ccc;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
