html, body {
    margin: 0;
    height: 100%;
}

body {
    background: #252424;
    color: white;
    font-family: Arial;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    text-align: center;
    transform: translateY(-10%);
}

h1 {
    margin-top: -20px;
    font-size: 60px;
}

.Zag {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 25px;
}

.cta-button {
    background: #4285f4;
    color: white;
    border: none;
    padding: 30px 40px;
    border-radius: 30px;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
}
@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }
    .Zag {
        font-size: 20px;
    }
    .cta-button {
        font-size: 14px;
        padding: 20px 30px;
    }
}