 html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
a {
  text-decoration: none;
  color: inherit;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.index-body {
  position: relative;
  height: 100vh;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  
}

.home-logo {
  width: 100%;
  height: auto;
}

.country-section {
  position: absolute;
  bottom: 10vh;         /* push a little above bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
}

.country {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  color: #979797;
  text-transform: uppercase;
}


/* mobile-view */

@media (max-width: 767px) {
     html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Prevent scrolling */
  }
.index-body {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centers logo vertically */
  }

    .home-logo {
  height: auto;
  width: 280px;
  margin: 0 auto;
}
  .country-section {
    position: absolute;
    bottom: 10vh; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    width: 80%;
    gap: 15px;
  }

  .country {
    font-size: 12px;
  }
}