*,
*::before,
*::after {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #18151E;
  overflow-x: hidden;
}


.page-container {
    padding-left: 1rem;   /* 16px */
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px; /* Adjust as needed */
    height: 100%;
  }

  .logo {
    display: block;
    width: 100%;
    max-width: 50rem; /* desktop max width */
    height: auto;
    margin: 0 auto;
    position: relative; /* no absolute positioning */
    transform: translateY(-2rem);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    min-height: 100vh; /* full screen height */
}

.button-group {
    margin-top: 1rem;
    display: flex;
    gap: 5rem;
    position: relative;
    justify-content: center;
    align-items: center;
    transform: translateY(-10rem);
}

#dancer-button {
    background-color: #9B59B6;
}

#developer-button {
    background-color: #4A90E2;
}
.nav-button {
    color: #F5F5F5;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

#dancer-button:hover {
    background-color: #8e44ad;
    transform: scale(1.5);
}

#developer-button:hover {
    background-color: #357ABD;
    transform: scale(1.5);
}

#stop1 {
    transition: offset 1s ease, stop-color 0.5s ease;
  }

  /* CSS for mobile*/
@media (max-width: 600px) {
    .logo {
        max-width: 20rem;
        transform: translateY(-5rem);
    }

    .button-group {
        flex-direction: column;
        gap: 2rem;
        transform: translateY(-20rem);
    }

}

  @media (min-width: 48rem) { /* 768px */
    .page-container {
      padding-left: 2.5rem;   /* 40px */
      padding-right: 2.5rem;
    }
  }