* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background-image: url('../images/gallery_page_background.jpg');
  background-size: cover;
  background-repeat: repeat;
}

#gallery_heading {
  color: #6c63ff;
}

.center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transform: translateY(50px);
}

.center .stateBlock {
  border: none;
  border-radius: 10px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 270px;
  min-height: 300px;
  width: 100%;
  color: white;
  transition: all 0.3s ease-in-out;
  box-shadow: 3px 3px 15px black !important;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
  padding-bottom: 0px;
}
.stateBlock:hover {
  transition: display 0.3s;
}
.stateBlock img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 300px;
  width: auto;
}

.description {
  color: white;
  display: none;
}
h4 {
  color: #6c63ff;
}
.description a {
  text-decoration: none;
  border: none;
  border-radius: 10px;
  padding: 10px;
  padding-top: 8px;
  background-color: #6c63ff;
  color: white;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.781);
}
.description a:hover {
  color: #6c63ff;
  background-color: white;
  transition: 0.3s all linear;
}
.gallery_header input {
  width: 35%;
  height: 40px;
  border-radius: 10px;
  outline: none;
  padding: 5px;
  margin: 25px;
  margin-top: 35px;
  margin-bottom: 0px;
  padding-left: 15px;
  font-size: 1rem;
  font-family: cursive;
  background-color: #ffffffd3;
  border: none;
  color: rgb(100, 100, 100);
}
.gallery_header input:focus {
  box-shadow: 0px 0px 14px rgb(70, 70, 70);
}
.container-fluid_1 {
  display: flex;
  flex-direction: column;
}
/* Navbar */
.navbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 0.5rem;
}
.navbar .user_profile {
  display: flex;
  flex-direction: row;
}
.navbar .user_profile_name p {
  font-size: 1.1rem;
}
.navbar .user_profile_icon a i {
  font-size: 1.9rem;
  color: rgba(75, 73, 75, 0.836);
}
.navbar .user_profile_icon {
  padding-left: 2px !important;
}
.navbar .menu_icon i {
  font-size: 1.8rem;
  position: relative;
  top: -0.37rem;
  color: rgb(75, 73, 75);
}
.navbar div {
  padding: 4px 10px;
  font-weight: 500;
  color: rgb(75, 73, 75);
}
/* Home Button Styling */
.home-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ff8c42;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-button i {
  font-size: 24px;
}

.home-button:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.home-button:active {
  transform: translateY(2px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
