#container {
       background-color: #ffffff;
       opacity: 95%;
       padding: 10px;
       border-style: double;
       border-color:#D4AF37;
       border-width:10px;
}

.header {
       display:flex;
       background: linear-gradient(to bottom, #000000, #00332f);
       border-style: double;
       border-color:#D4AF37;
       border-width:10px;
       padding: 90px 0;
       justify-content: flex-end;
}

#footer {
       background-color:#000000;
       color: #ffffff;
       padding:5px;
}

.responsive-img {
       max-width: 20%;
       height: auto;
       display: block;
       object-fit: cover;
} 

.responsive-img2 {
       width: clamp(200px, 50vw, 350px);
       height: auto;
       display: block;
       border: 4px inset #d4af37;
 
}


.container-fluid {
       padding:40px;
}

* {
       box-sizing: border-box;
}

body {
       font-family:"Share Tech";
       background-color:#ffffff;
       overflow-x: hidden;

}

h1, h4 {
       text-align:center;
       color: #004d46;
}

.title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.title {
  font-size: 40px;
  margin: 0;
}

.title-icon {
  width: 70px;
  height: 70px;
}

.title-wrap h4,
.title-wrap h1 {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
}


.title-wrap h4 {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
}

figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    padding: 5%;
}

figure img {
       border-radius: 50%;
}

nav ul {
       text-align:center;
       background-color: #004d46;
       padding:20px;
       text-decoration:none;
       border-bottom: 2px solid #d4af37;
}

nav li {
       display:inline;
}

nav ul li a:hover {
       text-decoration:none;
       color:black;
}

nav ul li a {
       color:#ffffff;
       margin:10px;
}

  .projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 3 columns */
    gap: 20px;
    padding: 80px 0;
    background-color: #121212;
    color: #ffffff;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
    .projects {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
    .projects {
        grid-template-columns: 1fr;
    }
}

 .card img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 2px solid #D4AF37;
  border-width:5px;
 }

fieldset {
       border: 2px solid teal;
}

ul {
       list-style-type: none;
}

ul li a {
       text-decoration: none;
       color:teal;
}

ul li a:hover {
       text-decoration: none;
       color: #D4AF37;
}

.copy {
       text-align:right;
}

#info {
       grid-template-columns: 1fr 1fr 1fr;
       display:grid;
}

#info img {
       grid-column:span 3;
       max-height:800px;
       max-width:800px;
}

#pic {
       max-width:50%;
       height:auto;
}

.pics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}


.pics img {
       max-width: 300px;
       width: 100%;
       height: auto;


}

.pics2 img {
     max-height: 500px;
       max-width: 500px;  
}
























