
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';font-size: 22px
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
   
}

.header {
    width: 100%;
}
/*------CSS FOR NAVBAR-------------------*/
 .navbar {
    z-index: 1;
    padding: 1rem 5rem;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color:white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
  .navbar .nav-head {
    font-size: 4.5rem;
    font-weight: 900;
    color: #11999E;
    text-decoration: none;
    background: #11999E;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.navbar .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
}
 .nav-links li {
    margin: 0 2rem;
}
.nav-links li:last-child {
    margin-right: 0;
}

.nav-links li .nav-link,
.nav-links li .nav-link:visited {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    color: #11999E;
    height: 100%;
    padding: 2.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}
.nav-links li .nav-link:hover,
.nav-links li .nav-link:active {
    color:#11999E;
}
.nav-links li .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 100%;
    background-color: #11999E;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}
.nav-links li:hover > .nav-link::after,
.nav-links li:active > .nav-link::after {
    transform: scaleX(1);
}
/*------CSS FOR MAIN PAGE -------------------*/

.main .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('cloudsvector.jpg'),
    linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
 .hero-title {
    font-size: 15rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
 .hero-subhead {
    font-size: 3rem;
    font-weight: 500;
    color: #f5f5f5;
}
.hero-subhead > span:nth-child(1) {
    color: #ffbc02;
}
.hero-subhead > span:nth-child(2) {
    color: #70d100;
}
.hero-subhead > span:nth-child(3){
    color:#e22525;
}

/*------CSS FOR ABOUT ME -------------------*/
.about {
    padding: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #006a65;
}
.about .about-head {
    font-size: 8rem;
    font-weight: 900;
    color: #e2ebf0;
    text-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 4rem;
    position: relative;
    text-transform: uppercase;
}
.about .about-content {
    margin: 0 10rem;
    padding: 4rem 3rem;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    color: #f5f5f5;
    line-height: 3rem;
    position: relative;
}
hr{
    background-color: #f5f5f5;
    width: 100%;
    height: 4px;
    border-radius: 50%;
}
/*------CSS FOR SKILLS -------------------*/
.Skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10rem;
    background-color: #103e5f;
    color: #f5f5f5;
    
}
 .Skills .myskills {
    font-size: 8rem;
    font-weight: 900;
    color: #e2ebf0;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
}
.development .dev-img{
    float: left;
    margin:2rem;
    padding: 1rem;
}
.dev-head{
    align:bottom;
    margin:2rem;
    padding: 1rem;
     font-size:3rem;

}
.dev-subhead{
    font-size: 2rem;
}
.fitness .fit-img{
    bottom:4rem;
    margin:2rem;
    padding: 1rem;
    float:right;
}
.fitness-head{
    align:bottom;
    margin:2rem;
    padding: 1rem;
    font-size:3rem;

}
.fitness-subhead{
    font-size: 2rem;
    margin-left:2rem;
}
.btn1{
    background: black;
    color:white;
    padding: 10px;
    border-radius: 10px;
    margin-left:40px;
}
/*------CSS FOR FOOTER -------------------*/
.footer {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding: 10rem 0;
    padding-bottom: 0;
    background-color: #7f5a83;
}
 .footer-head {
    font-size: 7rem;
    font-weight: 900;
    color: #e2ebf0;
    transition: all 0.3s ease;
    cursor: default;
    margin-bottom: 1rem;
    text-transform: capitalize;
    text-align: center;
}
 .footer-subhead {
    font-size: 2rem;
    font-weight: 500;
    position: relative;
    text-align: center;
    color: #f5f5f5;
}
 .contact-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin-top: 4rem;
    margin-bottom: 10rem;
    font-family: var(--text-font);
}
 .contact-link {
    margin: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #e6dee9;
    font-size: 2.5rem;
    transition: all 0.4s ease-in-out;
}
.contact-links .contact-link:hover,
.contact-links .contact-link:active {
    color: #ff99e7;
    text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
}
.btn2{
    color:purple;
    border-radius: 2rem;
    margin-bottom: 10rem;
    padding:10px;
}
 .footer-foot {
    border-top: 2px solid #e6e6e6;
    padding: 2rem ;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    color: #e6dee9;
    font-weight: 500;
}

