body{
    margin:0;
    padding:1em 1.35em;
    height:100vh;
    background-color: #252525;
    color:white;
    display:flex;
    flex-direction: column;
    font-family: "Roboto", sans-serif;
}

.projects{
    display: flex;
    flex-direction: column;
    border:1px solid #70e000;
    padding:1em 1.5em;
    margin-bottom: 1.5em;
}

.heading{
    text-align: center;
}

.details p{
    text-align: justify;
}

.btn{
    background-color: #70e000;
    border:none;
    color:black;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    padding:0.5em 1em;
    font-size: 1rem;
    border-radius: 3.5px;
    text-decoration: none;
    margin-right: 0.5em;
}


header{
    text-align: center;
}

.side-menu{
    background-color: #252525;
    width:50%;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding-top:5em;
}

.link{
    color:white;
    font-size: 1.1rem;
    margin-bottom: 0;
    width:100%;
    padding:1em 0;
    text-decoration: none;
    cursor:pointer;
    transition: background-color 0.25s ease;
    text-align: center;
}

.link:hover{
    color:#70e000;
    background-color: #1c1c1c;
}

.fa-bars{
    color: white;
    position:absolute;
    top:1.5em;
    left:1em;
}

.fa-bars:hover{
    color:#70e000;
    cursor: pointer;
}

.slide{
    transform: translateX(0);
    transition: transform 0.4s ease-in-out;
}

.close-btn{
    background-color: transparent;
    color:grey;
    border:none;
    position:absolute;
    top:1em;
    right:1em;
    cursor:pointer;
}

.close-btn:hover{
    color:#70e000;
}

.menu-container{
    display: flex;
    flex-direction: column;
}

@media(min-width:420px){
    .buttons{
        margin-top: 1.5em;
    }

    .projects{
        padding-bottom: 1.5em;
    }

    .description{
        line-height: 1.5em;
    }

}

@media(min-width:550px){
    .close-btn{
        font-size: 1.3rem;
    }

    .fa-bars{
        font-size: 1.3rem;
    }

    .link{
        font-size: 1.3rem;
    }

}

@media(min-width:720px){
    .side-menu{
        width:35%;
    }
}


@media(min-width:850px){
    body{
        padding:3em;
    }
    header{
        font-size: 1.3rem;
    }

    .projects{
        font-size: 1.2rem;
    }
}

@media(min-width:1500px){
   
    header{
        font-size: 1.5rem;
    }

    .projects{
        font-size: 1.3rem;
    }
}