h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: #fff;
    background-color: var(--primary-color-transparent);
    backdrop-filter: blur(5px);
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 1064px) {
    h1 {
        font-size: 4rem;
    }
    
}


h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

a{
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
}

