#title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55vh;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-color);
    margin-top: 100px;
}

#title h1 {
    text-transform: uppercase;
    font-size: 7rem;
    color: #fff;  
    font-weight: bold;  
    text-align: center;
}

#title h3 {
    text-transform: uppercase;
    font-size: 1.6rem;
    color: #fff;  
}

#title button {
    text-transform: uppercase;
    font-size: 1.4rem;
    color: #fff;
    background-color: var(--primary-color);
    padding: 15px 40px;
    margin: 20px;
    border: 4px solid var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

#title button:hover {
    background-color: #d8612a00;
}

.space {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#title a {
    text-decoration: none!important;
    color: #fff!important;
}

@media (max-width: 1200px) {
    #title h1 {
        font-size: 5rem;
    }

    #title h3 {
        font-size: 2rem;
    }

    #title button {
        font-size: 1.5rem;
        padding: 10px 30px;
    }
}

@media (max-width: 768px) {
    #title h1 {
        font-size: 4rem;
    }

    #title h3 {
        font-size: 1.2rem;
    }

    #title button {
        font-size: 1.2rem;
        padding: 10px 30px;
    }
}
