html {
  box-sizing: border-box;
}

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

/*
TRAIL OF STARS
*/
  .star {
    position: fixed;
    pointer-events: none;
    font-size: 16px;
    user-select: none;
    will-change: transform, opacity;
  }

body {
    margin: 0;
    font-family: Arial Narrow, sans-serif;
    background: #FFDEEF;
    background-image: url("https://i.imgur.com/36A2sHt.gif");
    color: #222;
}

main {
    max-width: 800px;
    margin: 0 auto;
}

header {
    background-color: hotpink;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, .5) 35px, rgba(255, 255, 255, .5) 70px);
    border: 1px solid #b73e80;
    border-bottom: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 1px 10px 5px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

section {
    background: white;
    border: 1px solid lightgrey;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
#hero, #about {
    border-bottom: none;
}

footer {
    background-color: hotpink;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, .5) 35px, rgba(255, 255, 255, .5) 70px);
    border: 1px solid #b73e80;
    border-top: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 5px;
    line-height: 1px;
    text-align: center;
    font-size: 0.9rem;
}