@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;600&display=swap');

body {
    background-color: #0c3848;
    animation: bg-colors 45s infinite linear;
    font-family: 'Poppins', sans-serif;
}

@keyframes bg-colors {
    0% {
        background: #0c3848;
    }
    25% {
        background: #1b1b1b;
    }
    50% {
        background: #172528;
    }
    75% {
        background: #0c242d;
    }
    100% {
        background: #0c3848;
    }
}
.container  {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container .main {
    width: 80vw;
    height: 80vh;
    max-width: 940px;
    max-height: 80vh;
}

.container .main .ia {
    width: auto;
    max-width: 200px;
    padding: 1vw 1vh;
}
.container .main h1 {
    color: #fff;
    font-weight: 600;
}

.container .main p {
    color: #fff;
    font-weight: 100;
    display: block;
    font-size: 1.5em;
}