* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

:root {

    --background-color: #e3ecec;
    --text-color: #555;
    --title-color: #000;
}



body {
    background: var(--background-color);
    color: var(--text-color);



}

.header {
    width: 100%;
    min-height: 100vh;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

nav {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    width: 80px;
}

nav ul {

    width: 100%;
    text-align: right;
    list-style: none;
    margin-right: 50px;
}

/* nav bar text spacing */
nav ul li {
    display: inline-block;
    margin: 5px 15px;
}

/* nav bar text styling/weight */
nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;

}

.toggle-btn {
    background: #132bb4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    border-radius: 20px;
    cursor: pointer;
}

.toggle-btn img {
    width: 25px;
    margin-left: 10px;

}

.content {
    margin-top: 12%;
    max-width: 600px;
}

.content1 h1  {
    margin-top: 8%;
    max-width: 600px;
    
   
  font-size: 70px;
  font-family: serif bold;
  color: var(--title-color);
  font-weight: 600;

}



.content h1 {
    font-size: 70px;
    font-family: serif bold;
    color: var(--title-color);
    font-weight: 600;
}

.content2 {
    margin-top: 12%;
    max-width: 600px;
}

.content2 h1 {
  font-size: 60px;
  font-family: serif bold;
  color: var(--title-color);
  font-weight: 600;
}

/* Changeing the Iam text style */
.content h1 span {
    font-family: serif;
    font-weight: 400;
    font-style: italic bold;
}


.content a {
    background-color: #FF7A3D;
    color: #fff;
    padding: 15px 70px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;

}


.cta-btn {
    background-color: #4eac18;
    color: #fff;
    padding: 15px 70px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    font-weight: 600;

    /* FIXES */
    position: relative;
    z-index: 20;
}



/* User img sizing/placement */
.image-box img {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 20px 0px auto; 
}

.image-box1 img {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 20px 0px auto; 
}

.image-box1  {
    
 
    
    margin: 60px 0px auto; 
}

.image-box {
    position: relative; 
    margin: 30px;
}




.small-img {
width: 100%;
  max-width: 350px;
  display: block;
  margin: 20px 0px auto;
}





/* User img sizing/placement */
.image-box2 img {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 20px 0px auto; 
}

.image-box2 img {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: -404px 643px auto; /* wide screen */
}

@media (max-width: 768px) {
  .image-box2 img {
    margin: 20px 0 auto; /* mobile */
  }
}


.image-box2  {
    
 
    
    margin: 60px 0px auto; 
}

.image-box2 {
    position: relative; 
    margin: 30px;
}
}







.container {
    color: #00bcd4;
    width: 100%;
    height: 50vh;
    /* background: #000000; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.skills h2 {

    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 5px;
    color: #000;
    font-size: 16px;
}

.progress-bar {
    background: #b3ad9d;
    width: 600px;
    height: 10px;
    border-radius: 5px;
}

.progress-bar div {
    height: 10px;
    border-radius: 5px;
    width: 0%;
    /* background: red; */
}

.progress-bar div span {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #222;
    float: right;
    margin-top: -15px;
    margin-right: -20px;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}

.twoD {
    background: #000;
    animation: twoD 1s linear forwards;
}

.threeD {
    background: #000;
    animation: threeD 1s linear forwards;
}

.GraphicDesign {
    background: #000;
    animation: GraphicDesign 1s linear forwards;
}

.WebDesign {
    background: #000;
    animation: WebDesign 1s linear forwards;
}


.WebDevelopment {
    background: #000;
    animation: WebDevelopment 1s linear forwards;
}


.MotionGraphics {
    background: #000;
    animation: WebDevelopment 1s linear forwards;
}



.UIUX {
    background: #000;
    animation: UIUX 1s linear forwards;
}




.twoD span {
    border: 4px solid #98e024;
}

.threeD span {
    border: 4px solid #98e024;


}

.GraphicDesign span {
    border: 4px solid #98e024;


}

.WebDesign span {
    border: 4px solid #98e024;


}

.WebDevelopment span {
    border: 4px solid #98e024;


}



.MotionGraphics span {
    border: 4px solid #98e024;


}



.UIUX span {
    border: 4px solid #98e024;


}

@media (max-width: 768px) {
    .image-box img {
        max-width: 250px;
    }
}





@keyframes twoD {
    100% {
        width: 88%;
    }
}

@keyframes threeD {
    100% {
        width: 80%;
    }
}

@keyframes GraphicDesign {
    100% {
        width: 85%;
    }
}

@keyframes WebDesign {
    100% {
        width: 85%;
    }
}

@keyframes WebDevelopment {
    100% {
        width: 80%;
    }
}



@keyframes MotionGraphics {
    100% {
        width: 80%;
    }
}


@keyframes UIUX {
    100% {
        width: 85%;
    }
}

