body{
    background: rgb(255, 255, 255);;
}

header
{
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
a
{
    color: inherit;
    text-decoration: none;
}

#download-cnt
{
    display: grid;
    place-items: center;
    min-height: 60vh;
    width: 100%;
    padding: 5% 0;
    color: var(--color);
}

#download-cnt div:first-child, #download-cnt div:last-child
{
    text-align: center;
    margin: 0;
}

#download-cnt div:first-child img
{
    width: 30%;
    margin-block: 0 1%;
    filter: hue-rotate(60deg)
}

#download-cnt div:last-child .download-btn
{
    display: inline-block;
    width: 50%;
    margin: 3% 0;
    background: transparent;
    padding: 3% 5%;
    border-radius: 30px;
    font-family: inherit;
    font-size: .9vw;
    box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.248);
    color: var(--color);
    transition: .3s;
    cursor: pointer;
    text-align: center;
}

#download-cnt div:last-child .download-btn:hover
{
    background: var(--color);
    color: white;
    box-shadow: none;
}








@media only screen and (max-width: 900px)
{
    body{
        background: rgb(255, 255, 255);
        overflow-x: hidden;
    }

    #hmb div
    {
        box-shadow: 0 0 8px .1px rgba(0, 0, 0, 0.3);
    }

    #hmb:hover div
    {
        box-shadow: none;
    }

    header
    {
        box-shadow: none;
    }
    
    #download-cnt
    {
        display: grid;
        place-items: center;
        height: 50vh;
        width: 100%;
        padding: 5% 0;
    }

    #download-cnt p
    {
        width: 80%;
        margin: 0 auto;
    }
    
    #download-cnt div:last-child .download-btn
    {
        width: 50%;
        margin: 3% 0;
        padding: 5% 2%;
        font-size: 100%;
        box-shadow: none;
        color: rgb(255, 255, 255);
        background: rgb(9, 184, 3);
    }

    #download-cnt div:last-child .download-btn:hover
    {
        background-color: white;
        color: rgb(9, 184, 3);
        border: 1px solid rgb(9, 184, 3);
    }
    
   
}


.mail-icon {
    background: rgb(11, 211, 211);
    border-radius: 50%;
}
