*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    transition: .5s ease;
    color: whitesmoke;
}
body{
    font-family: monospace;
    font-size: 1rem;
     background-image: url(../images/bggif.gif);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
nav{
    width: 100%;
    height: 10vh;
    line-height: 10vh;
    margin-bottom: 30px;
}
.heading{
    float: left;
    margin-left: 1.5rem;
    font-size: 1.8rem;
    text-decoration: 7px underline plum;
}

.nav_list{
    float: right;
}
.nav_list a{
    font-size: 2rem;
    margin: 0 1.5rem;
}
.nav_list i:hover{
    color: plum;
}
.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.box{
    background-color: rgba(0, 0, 0, 0.76);
    border-radius: 5px;
    width: 300px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.box i{
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: plum;
    border-radius: 30px;
    padding: 10px;
    color:rgb(0, 0, 0) ;
}
.experience{
    margin-top: 20px
}
.title{
    font-size: 1.8rem;
    /* text-decoration: 7px underline plum; */
    margin-left: 1.5rem;
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 7px solid plum;
}
.experience_box{
    background-color: rgba(2, 2, 2, 0.76);
    border-radius: 5px;
    width: 300px;
    height: 250px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    border-left: 5px dashed plum;
}
.timeline{
    background-color: plum;
    padding: 7px;
    width: 100px;
    /* display: inline-block; */
    border-radius: 5px;
    color:rgb(0, 0, 0) ;
    margin-bottom: 10px;
}
.experience_box h1{
    text-decoration: underline;
    margin-bottom: 10px;
}



@media screen and (max-width:600px) {
    body{
        font-size: 0.9rem;
    }
    .services{
        height: auto;
        min-height: 100vh;
        overflow: hidden;
     }
    nav{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        height: 18vh;
        line-height: normal;
        margin-bottom: 20px;
    }
    .heading{
        width: 100%;
        float: none;
        margin-left: 1.4rem;
        font-size: 1.6rem;
    }
    .heading p{
        display: inline-block;
       border-bottom: 7px solid plum;
   }
    .nav_list{
        float: none;
        margin-bottom: 20px;
    }
    .nav_list a{
        font-size: 1.8rem;
        margin: 0 1rem;
    }
    .box{
        width: 270px;
    }
    .experience_box{
        width: 270px;
        height: auto;
    }
    .title{
        font-size: 1.5rem;
    }
}