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

/* Default styles */
.main-head {
  height: 70vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.main-head video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.kaw {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: black;
  margin-top: 2vh;
}

.main-img {
  display: flex;
  justify-content: space-between;
}

.logo {
  display: flex;
  justify-content: center;
}

.logo img {
  height: 200px;
}

.img1 img {
  height: 150px;
  padding-left: 30px;
}

.img2 {
  height: 20vh;
  width: 30vw;
}

.main-hero {
  height: 40vh;
  width: 100vw;
  background-image: url(img/bglo.png);
  object-fit: cover;
}

.slok {
  padding: 2vw;
  text-align: center;
}

.main-link {
  height: 30vh;
  width: 100vw;
  background-color: beige;
  padding-inline: 10vw;
  padding-top: 20px;
}

.accounts {
  text-align: center;
  padding-bottom: 20px;
}

.account-icon {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.facebook-wrapper,
.twitter-wrapper,
.youtube-wrapper,
.instagram-wrapper {
}

.facebook-wrapper img,
.instagram-wrapper img,
.youtube-wrapper img,
.twitter-wrapper img {
  height: 50px;
}

.insta,
.facebook,
.twiter,
.youtube {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
}

.insta span,
.facebook span,
.twiter span,
.youtube span {
  font: 2em sans-serif;
  font-weight: 600;
}

.youtube-button,
.twitter-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.youtube-button:hover,
.twitter-button:hover {
  background-color: #cc0000;
}

.btn-main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.join-us-btn {
  background-color: #007BFF;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.join-us-btn:hover {
  background-color: #0056b3;
}

.main-footer {
  width: 100vw;
  background-color: rgb(46, 46, 35);
}

/* Footer styles */
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Media queries for responsiveness */
@media only screen and (max-width: 768px) {
  .kaw {
    font-size: 1.5rem;
  }

  .logo img {
    height: 150px;
  }

  .img1 img {
    height: 120px;
    padding-left: 20px;
  }

  .img2 {
    height: 15vh;
    width: 25vw;
  }

  .main-head{
    height: 40vh;
  }
  .main-hero{
    height: 40vh;
    color:#ffffff;
  }

  .main-link {
    padding-inline: 5vw;
    height: 25vh;
  }

  .account-icon {
   
    gap: 20px;
  }

  .join-us-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .kaw {
    font-size: 1.2rem;
  }

  .logo img {
    height: 120px;
  }

  .img1 img {
    height: 100px;
    padding-left: 10px;
    padding-top: 30px;
  }

  .img2 {
    height: 10vh;
    width: 20vw;
  }

  .main-link {
    padding-inline: 3vw;
  }

  .join-us-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .insta,
  .facebook,
  .twiter,
  .youtube {
    flex-direction: column;
  }
}
