html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}


body {
    background-color: #242424;
    font-family: Arial, sans-serif;
    color: white;
}


header {
  background-color: #242424;
  color: white;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  padding: 50px 20px;
  border-bottom: 2px solid #333333;

  display: flex;
  align-items: center;

  box-sizing: border-box;
}
.container-header {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 20px;
    top: 20px;
}
.container-header img {
  width: 30px;
  height: auto;
  margin-right: 1px;
  top: 10px;
  cursor: pointer;
}
#logo {
  width: 100px;
  height: auto;
  position: fixed;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
#home-button, #about-button, #contact-button {
    background-color: #242424;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
}

#home-button{
    position: fixed;
    top: 70px;
    left: 35%;
    
}
#home-button:hover, #about-button:hover, #contact-button:hover {
    background-color: #ffffff;
    color: black;
}
#about-button{
    position: fixed;
    top: 70px;
    left: 40%;
}
#contact-button{
    position: fixed;
    top: 70px;
    right: 37%;
}
main {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-top: 120px;
}


#about{
    background-color: #202020;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
}

#contact{
    background-color: #242424;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    
}




#album-cover {
    width: 300px;
    height: 300px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


#footer {
  background-color: #131212;
  color: white;
  margin-top: 3vh;
  width: 100%;
  padding: 10px 20px;

  display: flex;
  align-items: center;

  position: fixed;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
}

/* Icons stay left */
.container {
  display: flex;
  align-items: center;
}

/* Center text perfectly */
#footer p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.container img {
  width: 30px;
  height: auto;
  margin-right: 8px;
  cursor: pointer;
}
