*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.body
{
    width: 100vw;
    height: auto;
    background-color:white;
    
}
 
    @media only screen and (max-width: 500px)
    {
        body{

            flex-direction:row;
        }
        .header{
            flex-direction: column;
            gap: 0px;
            background-color: bisque;
            position:sticky;
            top: 0px;
        }
        .name
        {
            display: none;
        }
        
        .con1{
            
            flex-direction:column;
            width: 100%;

        }
        
        .works
        {
            flex-direction: column;
            align-items: center;
            justify-items: center;
            justify-content: space-evenly;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        .w4
        {
            padding-bottom: 100px;
        }
        .w2
        {
            margin-bottom: 250px;
        }
        .footer
        {
            flex-direction: column;
            align-items: center;
            justify-items: center;
            justify-content: center;
            flex-wrap: wrap;
            
        }
        .footer h4
        {
            font-size:12px ;

        }
        .link
        {
            display: none;
        }
       
    }

.header
{
    height: 90px;
    width: 100vw;
    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;
}
.con1
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    margin-right: 290px;
    margin-top: 150px;
    line-height: 1.3;
}
.con1 h1
{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    
}
.con1 h4
{
    margin-right: 260px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: dimgray;
}
.con1 h5
{
    margin-right: 80px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: dimgrey;
}
#blue
{
    color: royalblue;
}
.con2 h2
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-items: center;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-top: 170px;
    color: dimgrey;
}
.works
{
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: 100px;
    flex-wrap: wrap;
}
.works img
{
    border: solid 0px white;
    border-radius: 10px;
    box-shadow: 5px 2px 5px gray;
}
.works img:hover
{
    opacity: 0.7;
}
.works h4
{
    margin-top: 20px;
}
.w1
{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    text-align: center;
    color: dimgray;
}
.w2
{
    margin-top: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    text-align: center;
    color: dimgray;
}
.w3
{
    padding-bottom: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    text-align: center;
    color: dimgray;
}
.w4
{ 
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    text-align: center;
    color: dimgray;
}
.works h4
{
    animation: text 4s linear alternate;
}
@keyframes text
{
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    } 
}
.w1 img, .w3 img
{
    animation: slide1 3.5s linear alternate;
}
@keyframes slide1
{
    from
    {
        transform: translateX(-1200px);
        opacity: 0.2;
    }
    to
    {
        transform: translateX(0px);
        opacity: 1;
    }
}
.w2 img, .w4 img
{
    animation: slide2 3.5s linear alternate;
}
@keyframes slide2
{
    from
    {
        transform: translateX(1200px);
        opacity: 0.2;
    }
    to
    {
        transform: translateX(0px);
        opacity: 1;
    }
}
.link
{
    
    opacity: 0.8;
    box-shadow: 2px 2px 2px dimgray;
    width: 80px;
    height: 80px;
    border: 0px solid lightgray;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    margin-left: 620px;
    background: linear-gradient(to bottom, royalblue, #d96575);
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.link:hover
{
    opacity: 1;
}
.link p
{
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    align-items: center;
    justify-items: center;
    justify-content: center;
}
.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;
}