@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.typed::after {
    content: "|"; 
    animation: blink 0.7s infinite;
    opacity: 1;
}

#home{
    color: var(--navbar-color);            
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: xx-large;
    position: relative;
}

#home h1, h3{    
    padding: 0.5rem;    
    border-radius: 0.3rem;
    z-index: 3;
}

#home-background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: -1;
}

#home-background-overlay{
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-text-color);
    z-index: 3;    
}

@media (max-width: 767px){
    #home{
        font-size: large;                      
    }
}

@media (max-width: 1023px) and (min-width: 768px){
    #home{
        font-size: x-large;             
    }
}