body {
    margin: 0px;
    font-family: sans-serif;
}

/*Nav*/

.nav-wrapper {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    background-color: rgb(233, 232, 232);
    opacity: 0.9;
}

@media screen and (max-width: 500px) {
    .nav-wrapper {
    opacity: 1;
    }
}

.nav-content-left {
    display: flex;
    margin-left: 40px;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    font-size: 1.2em;
}

@media screen and (max-width: 500px) {
    .nav-content-left {
    font-size: 0.6em;
    margin-left: 5px;
    }
}

.navlinks-left a {
    display: flex;
    padding: 10px;
    margin-top: 30px;
    color: black;
    text-decoration: none;
}

@media screen and (max-width: 500px) {
    .navlinks-left a {
    padding: 5px;
    margin-top: 37px;
    }
}

.navlinks-left:hover {
    border-bottom: 1px solid rgb(68, 68, 68);
    margin-bottom: 35px;
    color: rgb(68, 68, 68);  
}

.navlinks-left a:hover {
    border-bottom: 1px solid color rgb(68, 68, 68);
    color: rgb(68, 68, 68);  
}

.nav-content-right {
    display: flex;
    justify-content: space-evenly;
    margin-right:30px;
    margin-top: 30px;
    text-transform: uppercase;
    color: black;
}

@media screen and (max-width: 500px) {
    .nav-content-right {
        margin-right: 5px;
        margin-top: 30px;
    }
}

.my-name {
    font-size: 0.8em;
    margin-top: -10px;
}

@media screen and (max-width: 500px) {
    .my-name {
        font-size: 0.3em;
        margin-right: 5px;
        margin-top: 5px;
    }
}

.linkedin img {
    height: 40px;
    width: 40px;
    margin-right: 15px;
    margin-left: 15px;
    background-image: url(Images/linkedin.png);
    background-color: white;
    border-radius: 6px 6px 6px 6px;
}

@media screen and (max-width: 500px) {
    .linkedin img {
    height: 30px;
    width: 30px;
    }
}

.github img {
    height: 40px;
    width: 40px;
    background-image: url(Images/github.png);
    background-color: white;
    border-radius: 6px 6px 6px 6px;
}

@media screen and (max-width: 500px) {
    .github img {
    height: 30px;
    width: 30px;
    }
}

/*About Me*/

.header-position {
    display: flex;
    width: 100%;
    justify-content: center;
}
.profession-header {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 120px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 2px 2px grey;
    font-size: 1.5em;
}

.icons-wrapper {
    display: flex;
    justify-content: center;
    width: auto;
}

.icons img {
    height: 40px;
    width: 40px;
    padding: 15px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 500px) {
    .icons img {
    height: 30px;
    width: 30px;
    }
}

.about-me-wrapper {
    display: flex;
    justify-content: center;
    width: auto;
}

.about-me-introduction {
    text-align: center;
    margin-top: 20px;
    margin-left: 5%;
    margin-right: 5%;
    padding: 10px;
    opacity: 0.9;
}

/*Portolio*/

.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
    opacity: 0.9;
}

.portfolio-wrapper-1 {
    display: flex;
    justify-content: space-evenly;
    width: auto;
    margin-bottom: 10px; 
    text-align: center;  
}

.portfolio-wrapper-2 {
    display: flex;
    justify-content: space-evenly;
    width: auto;
    margin-bottom: 10px;
    text-align: center;
}

.portfolio-images img {
    height: 200px;
    width: auto;
    border: 10px solid rgb(29, 29, 29);
    border-radius: 10px 10px 0px 0px;
}

@media screen and (max-width: 500px) {
    .portfolio-wrapper-1 {
    flex-direction: column;
    }
}

@media screen and (max-width: 500px) {
    .portfolio-wrapper-2 {
    flex-direction: column;
    }
}
    
.description {
    text-align: center;
}

/*skills chart*/

.skills-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
    text-transform: uppercase;
}
.skills-chart-wrapper {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    font-size: 0.8em;
}

@media screen and (max-width: 500px) {
    .skills-chart-wrapper {
    flex-direction: column;
    overflow: hidden;
    }
}

.percent {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.percent .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

svg {
    position: relative;
    width: 150px;
    height: 150px;
    z-index: 1000;
}

svg circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #191919;
    stroke-width: 10;
    stroke-linecap: round;
    transform: translate(5px, 5px);
}

svg circle:nth-child(2) {
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
}

.card:nth-child(1) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 50) / 100);
    stroke: #07aab6;
}

.card:nth-child(2) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 60 ) / 100);
    stroke: #07aab6;
}

.card:nth-child(3) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 20) / 100);
    stroke: #07aab6;
}

.card:nth-child(4) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 20) / 100);
    stroke: #07aab6;
}

.card:nth-child(5) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 20) / 100);
    stroke: #07aab6;
}

.card:nth-child(6) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 10) / 100);
    stroke: #07aab6;
}

.card:nth-child(7) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 25) / 100);
    stroke: #07aab6;
}

.card:nth-child(8) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 15) / 100);
    stroke: #07aab6;
}

/*Footer*/

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    background-color: rgb(233, 232, 232);
    opacity: 0.9;
    padding: 0%;
}

.footer-content-left {
    display: flex;
    font-size: 1.3em;
    margin-left: 40px;
    margin-top: 10px;
}

@media screen and (max-width: 500px) {
    .footer-content-left {
    font-size: 0.7em;
    margin-left: 10px;
    margin-top: 30px;
    }
}

.footer-content-right {
    display: flex;
    text-decoration: none;
    margin-right: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    font-size: 1.2em;
}

@media screen and (max-width: 500px) {
    .footer-content-right {
    font-size: 0.6em;
    margin-right: 5px;
    }
}

.navlinks-right a {
    display: flex;
    padding: 10px;
    margin-top: 25px;
    color: black;
    text-decoration: none;
}

@media screen and (max-width: 500px) {
    .navlinks-right a {
    padding: 5px;
    margin-top: 37px;
    }
}

.navlinks-right:hover {
    border-bottom: 1px solid rgb(68, 68, 68);
    margin-bottom: 40px;
    color: rgb(68, 68, 68);  
}

.navlinks-right a:hover {
    border-bottom: 1px solid color rgb(68, 68, 68);
    color: rgb(68, 68, 68);  
}

.getintouch {
    text-transform: initial;
    text-align: left;
    margin-left: 25%;
    margin-top: 3%;
}

@media screen and (max-width: 500px) {
    .getintouch {
    text-align: left;
    margin-left: 10%;
    }
}