body {
    background-color: #4C7AED;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    gap: 50px;
}

.container-text {
    max-width: 500px;
    width: 100%;
}

.container-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-contact span {
    margin-bottom: 5px;
}

.container-contact a {
   text-decoration: none;
}

h1, h2, h3, p, a, span {
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    /* text-align: center; */
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        height: auto;
        /* max-width: 600px; */
    }
    .container-text {
        text-align: center;
    }
}