.container
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
}

.image
{
    position: relative;
    left: 50%;
    margin-bottom: 8%;
    width: 300px;
    transform: translate(-50%, 0);
}

/*.heading
{
    margin-bottom: 0%;
    text-align: center;
    font-family: 'Poppins', serif;
    font-size: 15pt;
}
*/

.heading {
    margin-bottom: 0%;
    text-align: center;
    font-family: 'Poppins', serif;
    font-weight: 900;
    font-size: 16pt;
    background: linear-gradient(90deg, #ea278d, #ce3f9c, #4a3a5f);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 3s linear infinite;
}


@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.subheading
{
    margin-top: 2%;
    text-align: center;
    font-family: 'Poppins', serif;
    font-weight: 500;
    font-size: 13pt;
}

@media(
    orientation: portrait
){

    .heading
{
    font-size: medium;
}

.subheading
{
    font-size: medium;
    text-wrap: nowrap;
}

    .image
{
    width: 80%;
}
}