



.navbar {
    position: absolute;
    top: 0;
    left: 0;
}



.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;

    background-image: 
        linear-gradient(to bottom, 
                #000000 0%, 
                transparent 12%, 
                transparent 88%, 
                #000000 100%
        ),
        
    
        url('images/stars.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.content-wrapper {
    max-width: 600px;
    padding: 20px;
    margin-bottom: 10vh;
}

.main-title {
    font-size: 4rem;
    font-weight: 200;
    color: #fdfbd4;
    margin-bottom: 25px;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  0% { 
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.intro {
    font-size: 1.3rem;
    color: #fdfbd4;
    line-height: 1.5;
    font-weight: 100;
    animation: fadeIn 2s ease-in-out forwards;
}




.hero-image {
    width: 100px;
    height: 100px;
    animation: fadeIn 2s ease-in-out forwards;

}



