html,
body {
  font-family: 'Karla', sans-serif;
  background-color: #000000;
  color: white;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px; /* Adjust padding as needed */
  background-color: black;
}

.navbar-brand img {
  height: 200px;
  width: 200px;
}

.navbar-contact {
  display: flex;
  align-items: center;
}

.navbar-contact a {
  color: white;
  text-decoration: none;
  margin-right: 10px;  /* Added margin for spacing */
}

.navbar-contact a:hover {
  text-decoration: underline;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-top: 100px;  /* Adjusted margin for better layout */
}

.address {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;  /* Added margin for spacing */
}

/* Media query for mobile */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar-brand img {
    width: 350px; /* Adjusted width as needed */
    height: 350px;
  }

  .navbar-contact {
    margin-top: 10px;
  }

  .contact-item {
    margin-bottom: 5px;
  }

  .container {
    text-align: center;
  }

  .address-icon {
    font-size: 20px;
  }
}