 *{
    margin:0;
    padding-top:0;
    box-sizing: border-box; 
    position: relative;
} 
.title {
  text-align: center;
  margin-bottom: 30px;
   margin-top: 0;
  font-size: 4em;
  color:green;
  font-family: 'Aclonica';
  text-shadow: 0px 3px 3px black;
  position: relative;
  z-index: 900;
  top:150px;
}

.container {
  margin-left: 20px;
  margin-right: 20px; 
  overflow: auto; 
  margin-bottom: 50px; 
  position: relative;
  top:150px;
 
  
}

.container img {
  float: left;
  margin: 0 10px 0px 0; 
  border: 2px solid silver; 
  object-fit: cover;
}

.container h2{
  font-size: 60px;
  text-align: center;
  font-weight: 1200px;
  color: brown;
  text-shadow: 0px 0px 3px brown;
}
.container p {
  font-size: 30px;
  text-align: justify;
  line-height: 1.5;
}
.visit-button {
  margin-top: 15px;
  margin-bottom: 80px;
  display: inline-block;
  padding: 10px 20px;
  background-color:sandybrown;
  color: white;
 justify-content: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 30px;
  transition: background-color 0.3s ease;
  margin-bottom: 50px;
}

.visit-button:hover {
  transform: scale(1.09);
  background-color: green;
  box-shadow: 5px 5px 1px 1px silver;
}
.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 80px;
 
}

nav {
  width: 100%;
  height: 100px;
  position: fixed;
  background-color: rgb(6, 33, 3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
  z-index: 1000;
}
.logo1 {
  width: 12vw;
  min-width: 180px;
  max-width: 180px;
  height: auto;
}
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.navbar a {
  color: white;
  font-size: 1rem;
  font-weight: 530;
  text-decoration: none;
  transition: ease 0.40s;
  font-family: sans-serif;
  padding: 5px 6px;
  border-radius: 4px;
  min-width: max-content;
  margin-top: 2%;
}

.navbar a:hover,
.navbar a.active {
  background: white;
  color: rgb(9, 122, 43);
}

.user {
  color: white;
  font-size: 3rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar a {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}

.footer {
  background-color: rgb(2, 35, 17);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo2 {
  margin-bottom: 20px;

}

.footer-columns {
  display: flex;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
}
.footlinks {
  color: white;
  text-align: left;
  margin: 10px 20px;
  min-width: 200px;
}

.footlinks h4 {
  font-size: 30px;
  font-weight: 500;
 font-family: "Tapestry", serif;
  margin-bottom: 10px;
  margin-right: 40px;
}

.quick a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 15px 15px;
}

.contact div {
  margin: 5px 0;
  color: white;
  padding: 5px;
}
.contact i{
  padding: 10px;
    font-size: 20px;
}
.social a {
  font-size: 20px;
  margin: 5px;
  height: 30px;
  width: 30px;
  color: rgb(2, 35, 17);
  background-color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social a:hover {
  transform: scale(1.2);
}

.end {
  text-align: center;
  padding-top: 20px;
}

.end p {
  font-size: 13px;
  color: white;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: 'Courier New', Courier, monospace;
}


@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .footlinks {
    text-align: center;
    margin: 15px 0;
  }
}
 
