* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
    max-width: 100vw;
}

body {    
    margin: 0;
    padding: 0;
    max-width: 100%;
    background-color: #2F4F4F;
    color: #FFFFFF;
}

.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1000px;
}

h2 {
    text-align: center;
}

.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 20px 20px 20px;
}

.photo-img {
    background-position: center;
    background-size: cover;
    width: 150px;
    height: 150px;
    background-image: url('./assets/img/IMG_5090.jpg');
    border-radius: 50%;
}

.last-name {
    text-shadow: 3px 3px 5px #cd7f32;
}

.contacts-skills-style {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-list {
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
    width: 400px;
    gap: 23px;
}

.nav-item {
    list-style: none;
}

.anchor-link {
    position: relative;
    text-decoration: none;
    text-shadow: 1px 1px 0px #000000;
    color: #FFFFFF;
    font-weight: bold; 
    transition: all 0.3s;
    padding: 10px;
}

.anchor-link:hover {
    text-shadow: 1px 1px 5px #cd7f32;
}

.anchor-link::after {
    content: '';
    position: absolute;
    width: calc(100% - 20px);
    height: 2px; 
    bottom: 0; 
    left: 0;
    right: 0;
    margin: 0 auto;
    transform-origin: center;
    transform: scaleX(0);
    background-color: #cd7f32;
    transition: 0.5s;
}

.anchor-link:hover::after {
    transform: scaleX(1);
}

.title-of-section {
    display: flex;
    flex-direction: column;
    text-shadow: 3px 3px 5px #cd7f32;
    color: #ffffff;
    margin-bottom: 30px;
}

.liaison {
    color: #ffffff;
}

.liaison-info {
    color: #cd7f32;
}

.liaison-info-project {
    display: flex;
    color: #cd7f32;
    gap: 50px;
}

.string-position {
    display: flex;
    justify-content: space-around;
    justify-content: space-between;
}

.title-skills {
    display: flex;
    flex-direction: column;
}

.title-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-education {
    width: 255px;
    list-style: none;
}

.title-summary {
    list-style: none;
}

.div-line {
    filter: blur(2px);
    border-bottom: 2px solid #e8e6df; 
    width: 100%; 
    height: 0;
    margin-bottom: 20px;
}

.footer {
    margin: 30px 40px;
}

.border-radius {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f3f2f121;
    border-radius: 20px;
    width: 900px;
    height: 100px;
    backdrop-filter: blur(2px);
}

.gh-icon {
    width: 50px;
    height: 50px;
}

.png-project {
    width: 200px;
    height: 200px;
    border-radius: 20px;
}