body,
html {
    height: 100%;
    overflow-x: hidden;
}

body {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

.container {
    width: 350px;
    background-color: transparent;
    animation: appear 750ms linear forwards;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
}

p {
    line-height: 1.3rem;
    margin-top: 15px;
}

@keyframes appear {
    from {
        clip-path: polygon(0% 0%, 0% 0%, 0% 0%);
    }

    to {
        clip-path: polygon(0% 0%, 200% 0%, 0% 200%);
    }
}
