html, body {
	background-color: #ededed;
	font-family: 'Nunito';font-size: 22px;
	color: #212121;
	padding: 0;
	margin: 0;
}

img:hover {
	cursor: pointer;
}

.header {
	position: relative;
	margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center {
  display: flex;
  align-items: center;
  height: 80px;
}

.center > img {
  height: 80px;
}

.center > h2 {
	color: #f5501d;
  margin-left: 30px;
  font-size: 3.5em;
}

.main-content {
	position: relative;
	width: 100vw;
	/*padding-left: 50px;
	padding-right: 50px;*/
	padding-top: 20px;
}

/* Gallery container */
.container {
    background-color: #fafafa;
    width: calc(100vw - 190px);
    padding: 15px;
    border-radius: 15px;
    margin: 0 auto;
}

/* Centered flexible gallery grid */
#gallery-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Individual images */
.gallery-item img {
    height: 300px;
    width: auto;
    border-radius: 15px;
    object-fit: cover;
    display: block;
}

/* Fullscreen overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(237, 237, 237, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
}

a {
	text-decoration: none;
}