*
{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body 
{
    display: flex;
    justify-content: center;
    align-items: center;

    /* background: linear-gradient(to right, #A0D9D9, #659AA6,#F2CAB3, #F2B29B, #D99771 ); */
    background: linear-gradient(to right, #A0D9D9, #F2CAB3);
    /* background: linear-gradient(#5185A6, #D2D3D5); */

    min-height: 100vh;
    overflow: hidden;
}

.main_body
{
    display: flex;
    align-items: center;
    justify-content: center;
}


.info_text 
{
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
}

h2, p
{
    color: #ffffff;
    font-size: 14em;


    text-align: center;
    text-transform: uppercase;

    text-shadow: 10px 3px 10px rgba(13, 95, 99, 0.35); 
    text-shadow: 10px 3px 10px rgba(28, 74, 115, 0.35); 

    z-index: 1;
}

p
{
    color: #ffffff;
    font-size: 6em;
    z-index: 1;
}

img 
{
    position: absolute;

    top: 50%; 
    left: 50%;

    max-width: 800px;
    /* height: 100vh; */

    transform: translate(-50%, -50%);

}



@media (max-width: 821px) 
{
    h2
    {
        font-size: 10em;
    }

    p 
    {
        font-size: 6em;
    }

    img
    {
        width: 400px;
    }

}



@media (max-width: 702px) 
{
    h2
    {
        font-size: 7em;
    }

    p 
    {
        font-size: 3.5em;
    }

    
}

@media (max-width: 440px) 
{
    h2
    {
        font-size: 5.5em;
    }

    p 
    {
        font-size: 2.5em;
    }

    
}