body {
  margin: 0;
  background-color: rgb(255, 255, 255);
  /*opacity: 0.3;*/
}
/*test*/
header {
  color: rgb(114, 230, 191);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-family: verdana;
  padding: 0 16px 0;
  background-color: rgb(75, 74, 74);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 20px;
  padding: 10px;
  align-items: center;
}

.logo {
  width: 60px;
  height: auto;
}

.banner {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
}

.banner-container {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
}

.banner-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: rgb(99, 212, 187);
  border: 2px solid rgb(99, 212, 187);
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 100;
}

.gall {
  width: 400px;
  height: auto;
  text-align: center;
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.1);
  border: 5px solid rgb(0, 0, 0);
  border-radius: 15px;
  margin: 20px 50px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gall:hover {
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.gall:hover img {
  transform: scale(1.1);
}

.gall p {
  font-size: 18px;
  color: rgb(0, 0, 0);
  font-family: verdana;
  padding: 10px;
}

.featured {
  width: 600px;
  height: auto;
  text-align: center;
  padding: 25px 15px;
  margin: 20px 33%;
}

h1 {
  font-size: 45px;
  color: rgb(99, 212, 187);
  text-align: center;
  margin: 0;
  height: auto;
  font-family: verdana;
}
h2 {
  font-size: 60px;
  color: rgb(0, 0, 0);
  margin-left: 20%;
  display: flex;
  height: auto;
  font-family: verdana;
}

h3 {
  font-size: 30px;
  color: rgb(0, 0, 0);
  text-align: center;
  display: flex;
  margin: 10px;
  margin-left: 47.5%;
  height: auto;
  font-family: verdana;
}



.nav li {
  margin: 0;
  transition: color 0.3s ease;
}

.nav li:hover {
  color: rgb(99, 212, 187)
}

.nav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: rgb(99, 212, 187);
}

p {
    text-align: center;
  font-family: verdana;
  font-size: 20px;
}

.p2 {
  margin: 0;
  font-family: verdana;
  font-size: 20px;
  margin-left: 20%;
  margin-right: 20%;
}
.fa-solid {
  margin-right: 0.35rem;
}
footer {
text-align: left;
  font-family: verdana;
  font-size: 20px;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.about-copy {
  max-width: 560px;
}

.about {
  max-width: 650px;
  width: 100%;
  height: auto;
  margin-left: 150px;
}

.view-art {
  display: inline-block;
  margin-top: 20px;
  margin-left: 220px;
  padding: 10px 20px;
  font-size: 18px;
  color: rgb(99, 212, 187);
  background-color: rgb(75, 74, 74);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.gallery {
  padding: 40px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.art-item {
  text-align: center;;
}

.social {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}