body{
    font-family: "Roboto", sans-serif;
    margin:0 0 4em;
    color:white;
    text-align: center;
}

header{
    background-color: #252525;
    font-weight: 100;
    padding:5em 0;
    position: relative;
}

header h1{
    margin:0;
    font-weight: 400;
}

header img{
    width:150px;
    height:150px;
    border-radius: 50%;
    border:0.25em solid white;
    margin-top:2em
}

.about{
    color:black;
    padding:0 2.5em;
}

.container h2{
    width:100%;
    border-top: solid 1px #c4c4c4;
    border-bottom: solid 1px #c4c4c4;
    padding:0.75em 0;
    margin-top: 2.75em;
    font-weight: 400;
}

.bio{
    text-align: justify;
    line-height: 1.5;
    color:#252525;
}

.btn{
    background-color: #70e000;
    color:black;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    padding:0.75em;
    border:none;
    margin-top:2em;
    border-radius: 3px;
    width:85%;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skills{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
}

li{
    margin-bottom: 1em;
    color:#252525;
    list-style-type: none;
}

.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;
}

a{
    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;
}

a: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;
}

.name{
    font-weight: 600;
}

.btn:hover{
    background-color: #9CFF1E;
    color:#111111;
    cursor: pointer;
}

.btn:active{
    background-color: #5DBA00;
}

@media(min-height:420px){

    header img{
        width:200px;
        height:200px;
    }

   .about{
        color:black;
        padding:0 2em;
    }

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

    .close-btn{
        font-size: 1rem;
    }
}

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

   .close-btn{
        font-size: 1.3rem;
    }

    .links{
        font-size: 1.3rem;
    }

    .btn{
        font-size: 1rem;
        width:80%;
    }
}

@media(min-height:720px){

    header img{
        width:220px;
        height:220px;
    }

    .container h2{
        font-size: 2rem;
    }

    .bio{
        font-size: 1.2rem;
    }

    li{
        font-size: 1.2rem;
    }
    .about{
        padding:0 4em;
    }

    .btn{
        width:70%;
        font-weight: 700;
        border-radius: 5px;
    }

    .side-menu{
        width:35%;
    }

}

@media(min-width:850px){
    .btn{
        padding:1.2em;
        border-radius: 6px;

    }
}

@media(min-width:1080px){

    header img{
        width:250px;
        height:250px;
    }

    .container h2{
        font-size: 2.5rem;
    }

    .bio{
        font-size: 1.5rem;
    }

    li{
        font-size: 1.5rem;
    }

    .about{
        padding:0 6em;
    }

   header h1{
        font-size: 2.5rem;
   }
   .side-menu{
        width:35%;
    }

    .btn{
        font-size: 1.3rem;
        width:60%;
        padding:0.75em;
    }

}

@media(min-width:1500px){


   .container h2{
        font-size: 3rem;
   }

   .bio{
        font-size: 2rem;
   }

   li{
        font-size: 2rem;
   }

   .container{
        padding:5em;
   }

   .btn{
        width:40%;
        padding:1em 2em;
        font-size: 1.5rem;
        border-radius: 10px;
   }


   #a-tags{
        padding:0;
   }
    
}