#container
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

h1
{
    flex-direction: row;
    font-size: clamp(0.1rem, 10vw, 6rem);
    text-align: center;
}

h1 span
{
    text-shadow: 0px 0px 2px black;
}

h1 span:nth-child(1)
{
    color: red;
}

h1 span:nth-child(2)
{
    color: dodgerblue;
}

h1 span:nth-child(3)
{
    color: limegreen;
}

h2
{
    font-size: clamp(1.4rem, 5vw, 2.5rem);
    text-align: center;
}

.green-span
{
    color: #2BAE66;
}