@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');

html {
    background-color: #9b000a;
    font-family: "Handlee", cursive;
}

h1 {
    font-size: 3rem;
    margin-top: 2rem;
}

h1, p {
    color: #390000;
    text-align: center;
}

#logo {
    display: block;
    margin-left: 25%;
    width: 50%;
    height: 50%;
    background-image: url('../images/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

nav a {
    
    color: #ffbd00;
    text-decoration: none;
    padding: 10px;
}

a:hover {
    color: #ca4d66;
}
#dancers, #djs, #gallery, #hosts, #managers, #owners {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

nav ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style-type: none;
  background-color: #a54545; /* Dark theme */
  padding: 1rem 2rem;
  position: sticky; /* Keeps navbar at top while scrolling */
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 2em;
    margin-right: 5em;
    margin-left: 5em;
}

.party {
    margin-left: 30%;
}