@font-face {
    font-family: "Helvetica Neue";
    src: url("../assets/fonts/HelveticaNeue.ttf") format("truetype");
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Navigation */
header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    padding-right: 20px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

/* Home Button Arrow */
.home-button {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 50px;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.home-button:hover {
    opacity: 0.7;
}

/* Project Container - Centering Everything */
.project-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
}

/* Large Project Number - On Top of Sketch */
.project-number {
    font-size: 12vw;
    font-weight: bold;
    text-align: center;
    margin-bottom: -50px; 
    z-index: 2;
}

/* Sketch Section - Centered */
.sketch-container {
    width: 600px;
    height: 600px; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Project Description - Below Sketch */
.project-description {
    max-width: 600px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
}
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, 
        #8e8584,  
        #F7CAC9,  
        #92A8D1,  
        #fcfcfc,  
        hsl(259, 18%, 68%) 
    );
    background-size: 400% 400%;
    animation: waveBackground 15s ease-in-out infinite;
    z-index: -1;
}