
.container
{
    margin: 0;
    padding: 20px 30px;
}

img
{
    width: 100%;
    height: 650px;
    object-fit: contain;
}

p
{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: justify;
    font-family:Arial, Helvetica, sans-serif;
}

h2
{
    font-size: 4rem;
    text-align: center;
    text-transform: capitalize;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

h3
{
    font-size: 3.5rem;
    text-align: center;
    text-decoration: underline;
    text-transform: capitalize;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    -webkit-text-stroke: 2px  black;
    letter-spacing: 5px;
}

h1
{
    text-align: center;
    font-size: 5rem;
    text-transform: capitalize;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    -webkit-text-stroke: 3.5px  black;
    letter-spacing: 4px;
}

span
{
    color: red;
}

button
{
    cursor: pointer;
    color: whitesmoke;
    background-color: white;
    border: 2px solid #fff;
    font-size: 2rem;
}

button:hover
{
    background-color: transparent;
    color: white;
    scale: 1.2;

}


ol
{
    line-height: 1.5;
    font-size: 2rem;
    font-weight: 700;
    text-align: justify;
    text-transform: capitalize;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


/* Media Quries */

@media (max-width:1140px)
{
    html
    {
        font-size: 70%;
    }
}

@media (max-width:450px)
{
    html
    {
        font-size: 65%;
    }

    p
    {
       word-wrap: break-word;
    }

    h1{
        font-size: 3rem;
        -webkit-text-stroke: 2px  black;
        letter-spacing: 4px;
    }

    h3{
        font-size: 2.5rem;
        -webkit-text-stroke: 1px  black;
        letter-spacing: 2px;
    }

    img
    {
        height: auto;
        width: 100%;
        margin: 0 auto;
    }

}