


body {
    margin: 0;
    padding: 0;
}

header {
    background: rgba(30, 30, 30, 1);
    color: white;
    position: fixed;
    height: 60px;
    width: 100%;
    padding: 2rem 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Merriweather, "Times New Roman", serif;
    z-index: 10;
}

header h1 {
    margin: 0;
    color: rgb(209, 180, 193);
}

header img {
    position: absolute;   /* take it out of flex layout */
    left: 50%;            /* move to middle */
    top: 50%;             /* vertically center */
    transform: translate(-50%, -50%); /* exact centering */
    height: 40px;         /* control size */
}

header ul {
    list-style: none;
    color: rgb(209, 180, 193);
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    font-size: 24px;
    padding-right: 4rem; /* adjust as needed */
} 

}



body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f4f1ec; /* light parchment-like color */
    color: #222;
}

#home {
    color: #1f1f1f;
    scroll-margin-top: 80px;
    padding: 3rem 1rem;
    font-size: 18px;
    border-bottom: solid 5px gray;
    position: relative;
    top: 60px;
    }


#projects {
    color: #1f1f1f;
    font-weight: normal;
    font-size: 18px;
    padding: 3rem 1rem;
    border-bottom: solid 5px #F9F6EE;

}


#spilgree {
    font-weight: normal;
    padding: 3rem 1rem 6rem;
    font-size: 18px;
    border-bottom: solid 5px gray;
}

#spilgree p {
    font-style: italic;
    text-align: center;
}

#LoveLadyLarlaCover {
  display: block;
  margin: 0 auto;        /* centers it horizontally */
  max-width: 400px;      /* never wider than 400px */
  width: 100%;           /* scales down on small screens */
  height: auto;          /* keeps proportions */
}


@media (max-width: 600px) {
  #LoveLadyLarlaCover {
    max-width: 400px;
    max-height: 600px;
  }
}




#contact {
    color: #1f1f1f;
    padding: 3rem 1rem 6rem;
    font-size: 18px;
    border-bottom: solid 5px gray;
}







footer {
    background: rgba(30, 30, 30, 1);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin: 0;
}





