html { scroll-behavior: smooth;}

body {
    background-color: #4e0555;
    text-align: center;
}



body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../img/lavender_fabric_texture.jpg");
    size: 20%;
    opacity: 0.3;
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
}


#header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100%;
    top: 100px;
    background-color: #010429;

    border: red 3px solid;
}

#header-text {
    color:  #f7f1e3;
    font-family: 'Amplitude Wide';
    font-weight: 700;
    font-size: 2.5rem;
}

#logo {
    transform-origin: top center;
    left: 50%;
    width: 200px;
    transform: translate(-50%, 0);
    margin-top: 20px;

    display: block;
    position: relative;
    object-fit: contain;
    max-height: 100%;
    z-index: 50;

}

.star-container {
top: 0%;
  position: fixed;
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  z-index: -1;
}

.star { position: absolute; }


#header-gradient {
    position: fixed;
    width: 100%;
    height: 450px;
    top: 0;

    background: linear-gradient(to bottom, #0a0a1a, transparent);

    z-index: -5;

}



#hero-img {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: -3;
}

#page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 2rem auto;

    width: 80%;
}

#page-content img {

    width: 400px;
    height: auto;
}



#footer-div {
    margin: 0 auto;
    text-align: center;
    justify-self: center;


    color: pink;


}





@media (max-width: 768px) {
    #logo {
        width: 50%;
    }

    .star-container {
        height: 30%;
    }

    h1 {
        color: black;
    }

    #nav-menu {
        margin-top: 0;
    }


} 