.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(0, 0, 33);
    color: white;
    font-family: 'Poppins', sans-serif;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    background-color: rgb(31, 31, 67);
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    list-style: none;
    margin: 0 23px;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

nav ul li a:hover {
    color: rgb(135, 135, 224);
}

.left {
    font-size: 1.5rem;
}

.firstSection {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 110px 0;
}

.firstSection>div {
    width: 30%;
}

.leftSection {
    font-size: 2.5rem;
}

.rightSection img {
    width: 90%;
}

.purple {
    color: blueviolet;
}

#element {
    color: rgb(136, 122, 225);
}

main hr {
    border: 0;
    height: 2px;
    background: rgb(150, 132, 220);
    margin: 60px 90px;

}

.textGray {
    color: rgb(150, 150, 150);
}

.secondSection {
    margin: auto;
    max-width: 80vw;
    max-height: 80vh;
}

.secondSection h1 {
    font-size: 1.9rem;
}

.secondSection .box {
    width: 80vw;
    height: 2px;
    background-color: white;
    margin: 100px 0 260px;
    display: flex;
    justify-content: space-around;
}

.vertical-line {
    width: 1px;
    height: 70px;
    background-color: white;
}

.secondSection .box .image-top {
    width: 48px;
    position: relative;
    top: -60px;
    left: -20px;
}

.secondSection .box .role-title {
    width: 160px;
    position: relative;
    top: 24px;
}

.secondSection .box .company {
    position: relative;
    width: 160px;
    top: 26px;
    font-size: 14px;
}

.secondSection .box .role-duration {
    position: relative;
    top: 25px;
    width: 160px;
    font-size: 12px;
}

.secondSection .box .role-description {
    position: relative;
    top: 30px;
    width: 160px;
    font-size: 12px;
    color: gray;
}

footer {
    background-color: rgb(31, 31, 67);
    margin: 396px 0px 0px;
    padding: 20px 0px;
}

.footer-box {
    padding: 40px 40px;
    display: flex;
    justify-content: space-around;
}

footer li {
    list-style: none;
}

footer li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    margin: 2px 0px;
}

footer li a:hover {
    text-decoration: none;
    color: rgb(255, 167, 255);
    font-size: 15px;
    margin: 2px 0px;
}

footer .copyright {
    text-align: center;
    font-size: 12px;
    margin: 20px 0px 0px;
    color: rgb(175, 175, 175);
}