* {
    padding: 0;
    margin: 0;
}
#homepage {
    background-color: aliceblue;
}
#content {
    background-color: antiquewhite;
    margin: 15px 15px 15px 15px;
    border-radius: 20px 20px 20px 20px;
    width: 100%;
    height: 100vh;
    display: flex;
    position: fixed;
    /* justify-content: center; */
    flex-direction: column;
    align-items: center;

    
    
}
#confetti-container {
    height: 150px;
    cursor: pointer;
    position: relative;
    top: 0;
}
#welcome-text {
    cursor: pointer;
    font-family: sans-serif;
    font-size: 100px;
    background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
    background-clip: text;
    color: black;
    transition: 0.3s;
    background-size: 0%;
    background-position: center;
    padding: 20px;
}

#welcome-text:hover {
    color: transparent;
    background-size: 100%;
    scale: 1.2;
}

.project-link {
    z-index: 1;
    top: 50%;
    position: relative;
    width: 200px;
    height: 200px;
    background-color: aquamarine;
    border: 1px solid black;
    border-radius: 10px;
}
.label {
    width: 100%;
    height: 25px;
}

.confetti {
    position: absolute;
    width: 5px;
    height: 10px;
    top: 0;
    left: 0;
    pointer-events: none;
    animation: confetti 3s linear forwards;
    z-index: 2;
}
.fade-out {
    animation: fadeOut 0.3s forwards;
}

@keyframes fadeOut{
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes confetti{
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(0, 100vh) rotate(-360deg); 
    }
}