*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.body
{
    width: 100vw;
    height: auto;
    background-color:white;
    
}
.header
{
    height: 90px;
    width: 100vw;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content: center;
    gap: 600px;
    background: linear-gradient(to bottom,  #d96575, white,white,transparent);
    position: fixed;
    bottom: 551px;
}
.name
{
    font-size: 18px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
    color:dimgrey;
    
}
.navbar
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content: center;
    gap: 50px;
    font-size: 14px;
}
.navbar a
{
    text-decoration: none;
    color: black;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.navbar a:hover
{
    opacity: 0.7;
}
@media only screen and (max-width: 500px)
{
   
    .name
    {
        display: none;
    }
    .con1
    {
        flex-direction: column;
        align-items: center;
        justify-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 100px;
        animation:none;
        
    }
    .con2
    {
        flex-direction: column;
        align-items: center;
        justify-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 100px;
        animation: none;
    }
    .con3
    {
        flex-direction: column;
        align-items: center;
        justify-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 100px;
        animation: none;
    }
    .con4
    {
        flex-direction: column;
        align-items: center;
        justify-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 100px;
        animation: none;
    }
    .con1 img, .con2 img, .con3 img , .con4 img
    {
        width: 100px;
    }
    .footer
        {
            flex-direction: column;
            align-items: center;
            justify-items: center;
            justify-content: center;
            flex-wrap: wrap;
            
        }
        .footer h4
        {
            font-size:12px ;

        }
}


.container
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content: center;
    margin-top:200px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif  ;
    color: white;
}
.container h1
{
    text-shadow: 5px 2px 5px  royalblue;
}

.con1
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content:space-evenly;
    margin-top: 150px;
    animation: con1 3s linear alternate;
}
@keyframes con1
{
    from
    {
        gap: 2000px;
        opacity: -1;
    }
    to
    {
        gap: 0px;
        opacity: 1;
    }
}

.con1 img, .con2 img, .con3 img , .con4 img
{
    width: 200px;
}

.con2
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content:space-evenly;
    margin-top: 100px;
    animation: con2 3s linear alternate;
    
}
@keyframes con2
{
    from
    {
        gap: 2000px;
        opacity: -1;
    }
    to
    {
        gap: 0px;
        opacity: 1;
    }
}

.con3
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content:space-evenly;
    margin-top: 100px;
    animation: con3 3s linear alternate;
}
@keyframes con3 
{
    from
    {
        gap: 2000px;
        opacity: -1;
    }
    to
    {
        gap: 0px;
        opacity: 1;
    }
}

.con4
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content:space-evenly;
    margin-top: 100px;
    margin-bottom: 100px;
    animation: con4 3s linear alternate;
}
@keyframes con4
{
    from
    {
        gap: 2000px;
        opacity: -1;
    }
    to
    {
        gap: 0px;
        opacity: 1;
    }
}


.footer
{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content:space-around;
    height: 100px;
    background: linear-gradient(to top,royalblue, white,white,white, white);
}
.footer h4
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: dimgray;
    
}
.footer h5
{
    font-size: 14px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #d96575;
}