/* Set the black background for the whole page */
body {
    background-color: black;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight:300;
}
/* Links appear like normal text by default */
a {
    color: white;
    text-decoration: none; /* Removes underline */
    font-family: 'Raleway', sans-serif;
    display:flex;
    flex:1;
    justify-content:center;
}

/* Links appear like normal text by default */
a .line{
    color: white;
}
/* Fading in the overlay */
.fade-in-overlay {
    opacity: 1 !important;
    pointer-events: all;
}
/* Styles for the fade overlay */
#fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
/* Center content */
.content {
    text-align: center;
}

/* Logo fades in first */
.logo {
    max-width: 200px;
    height: auto;
    margin: 0px;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 0.5s; /* Logo fades in after 0.5s */
}
._logo {
    max-width: 200px;
    height: auto;
    margin: 0px;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 0s; /* Logo fades in after 0.5s */
}

/* Title fades in second */
.title {
    
    margin: 0px;
    color: white;
    font-size: 2.5em;
    font-family: 'Raleway', sans-serif; /* Apply Raleway font */
    font-weight:300;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 1.5s; /* Title fades in 1 second after the logo */
}
._title {
    
    margin: 0px;
    color: white;
    font-size: 2.5em;
    font-family: 'Raleway', sans-serif; /* Apply Raleway font */
    font-weight:300;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 0s; /* Title fades in 1 second after the logo */
}
/* Subtitle with lines extending */
.subtitle {
    
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 2.0s;
}
/* Subtitle with lines extending */
._subtitle {
    
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 0s;
}

/* Menu with lines extending */
.menu {
    
    margin: 0px;
    display: block;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 2.5s;
    list-style: none;
    padding: 0;
}
._menu {
    
    margin: 0px;
    display: block;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 1.0s;
    list-style: none;
    padding: 0;
    
    width:300px;
}

.menu-item{
    display:flex;
    flex:1;
    align-items: center;
    justify-content: center;
}

/* Lines on each side of the subtitle */
.subtitle .line {
    flex-grow: 1;
    height: 1px;
    background-color: white;
    margin: 0 10px;
}

/* Subtitle text */
.subtitle .text {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1em;
    letter-spacing: 2px;
}
/* Lines on each side of the subtitle */
._subtitle .line {
    flex-grow: 1;
    height: 1px;
    background-color: white;
    margin: 0 10px;
}

/* Subtitle text */
._subtitle .text {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1em;
    letter-spacing: 2px;
}
/* Lines on each side of the menu */
.menu .line {
    flex-grow: 1;
    height: 1px;
    margin: 10px;
    animation: fadeOut 0.5s ease-in-out forwards;
    
}
/* Lines on each side of the menu */
.menu-item:hover .line {
    background-color: white;
    animation: fadeIn 0.5s ease-in-out forwards;
}
/* Lines on each side of the menu */
.menu-item .line {
    background-color: white;
    animation: fadeOut 0.5s ease-in-out forwards;
}
/* Define the fadeIn animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
/* Define the fadeIn animation */
@keyframes fadeOut {
    to {
        opacity: 0;
    }
}
