* {
    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: 10%;
    max-width: 600px;
}



.content h1 {
    font-size: 70px;
    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;
}

/* Changeing the HireMe text style */
.content a {
    background-color: #4eac18;
    color: #fff;
    padding: 15px 70px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;

}

/* User img sizing/placment */
.image-box img {
    width: 350px;
    display: block;
}

.image-box {
    position: absolute;
    bottom: 0;
    right: 10%;
}





.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: #959595;
    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;
}




.twoD span {
    border: 4px solid #98e024;
}

.threeD span {
    border: 4px solid #98e024;


}

.GraphicDesign span {
    border: 4px solid #98e024;


}

.WebDesign span {
    border: 4px solid #98e024;


}







@keyframes twoD {
    100% {
        width: 88%;
    }
}

@keyframes threeD {
    100% {
        width: 80%;
    }
}

@keyframes GraphicDesign {
    100% {
        width: 80%;
    }
}

@keyframes WebDesign {
    100% {
        width: 75%;
    }
}