* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Dancing Script', cursive;
  background-color: black;
}

a {
  text-decoration: none;
  color: #fff;
}

ul {
  list-style: none;
}
.butonii:hover {
  background: #2A2A2A;
}
.butonii {
 display: inline-block;
  padding: 15px 25px;
 font-weight:600;
  border-radius: 10px;
  border: 0.7px solid rgb(238,232,170);
  cursor: pointer;

  
}
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 100%;
  background-color: black;
  font-family: "Quicksand", sans-serif;

}
li{
  padding-top: 15px;
}
#navbar img {
  padding-top: 10px;
  width: 80px;
  height: auto;
  margin-left: 80px;
}

nav ul {
  display: flex;
  margin-right: 100px;
}

nav ul li a {
  padding: 15px 20px;
  font-weight: 600;
}

nav ul li a:hover {
  border-bottom: 2px solid #e4b95b;
}

.container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #0d0d0d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 20px;
}
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #0d0d0d;
}

.text {
  flex: 1;
  padding: 20px;
  text-align: left;
}

img {
  max-width: 100%; /* Ensure the image does not exceed the container width */
  height: auto; /* Allow the height to adjust according to the aspect ratio */
  border: 1px solid #000;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px; /* Add border-radius to maintain consistent corners */
}




.container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #0d0d0d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 20px;
}
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.text {
  flex: 1;
  padding: 20px;
  text-align: left;
}

img {
  width: 720px;
  height: 550px;
  object-fit: cover;
  border: 1px solid #000;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
h2 {
  color: rgb(238,232,170);
  font-size: 100px;
  font-weight: 500;

}

p {
  color: #555;
}
.footer{
    background-color: #111010;
    padding: 70px 0;
     font-family: "Quicksand", sans-serif;
}
.footer1{
   width: 25%;
   padding: 0 15px;
}
.footer1 h4{
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 700;
    position: relative;
}
.footer1 h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: #2A2A2A;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer1 ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer1 ul li {
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
    color: #bbb;
    display: block;
    transition: all 0.3s ease;
}
.footer1 ul li a:hover{
    color: #fff;
    padding-left: 8px;
    transition: all 0.3s ease;
}
.footer1 .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #ffffff20;
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.footer1 .social-links a:hover{
    color: #24262b;
    background-color: #fff;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
@media only screen and (max-width: 600px) {
  .container {
    margin: 10px;
  }
  .section {
    flex-direction: column;
  }
  .text {
    padding: 10px;
    text-align: center;
  }
  img {
    max-width: 70%; /* Adjust the maximum width as needed */
  }
}


@media only screen and (max-width: 768px) {
  #navbar {
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  #navbar img {
    margin-left: 0;
    margin-bottom: 20px;
  }

  nav ul {
    margin-right: 0;
  }

  nav ul li {
    margin: 10px 0;
  }

  nav ul li a {
    padding: 10px 15px;
  }
}
