body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f7f6;
}

.container {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center;    
    height: 100vh; 
    text-align: center;
}

.tagline {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

@media (max-width: 600px) {
    .tagline {
        font-size: 1.8rem;
    }
}