
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #520606;
}

button { 
  background-color: #ffbe85;
  border: #373b40 solid 1px;
}

button:hover {
  background-color: #f28b30;
}

button:active {
  background-color: ##f29429;
}

.overlay {
  width:100%;
  height:100%; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7); 
  display: none; 
  position: fixed;
  display: none;
  z-index: 10;
}

.overlay-img {
  height: 90%;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 11;
}




/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #2e282d;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the content */
.content {
  background-color: #faf0f0;
  padding: 10px;
  margin: 15px;
  border: gray solid 2px;
}

.image-grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  gap: 25px;
  background-color: transparent;
  border: transparent;
  padding: 25px;
  width: 2000;
  }

.image-item { 
  width: 100%;
  border: solid black 5px;
  transition: 0.3s;
  position: relative;
  }

.image-item:hover {
  transform: scale(1.3);
  border: solid scarlet 10px;
  z-index: 2;
}


/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
}

