header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem;
}

#logo-img {
    width: 10rem;
    height: auto;
}

.title {
    font-size: 2rem;
    color: var(--primary)
}

.title span {
    color: var(--accent3);
}

.description {
    color: var(--primary);
    font-size: 1rem;
    font-style: italic;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    .description {
        font-size: 1.5rem;
    }
    #logo-img {
        width: 15rem;
    }
    
}