* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f8f8f8;
    font-family: Helvetica,Arial,sans-serif;
    font-size: 10px;
    margin-left: 10%;
    margin-right: 10%;
    animation: fadeIn ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.title {
    font-size: 22px !important;
    font-weight: 500;
    font-style: normal;
    color: #272727;
}

.title a {
    text-decoration: none;
    color: #272727; 
}

.navbar_section {
    display: flex;
    position: sticky;
    align-items: center;
    justify-content: space-between;
    top: 0px;
    background: #f8f8f8;
    background-blend-mode: darken;
    background-size: cover;
    font-size: 16px !important;
    font-weight: normal;
    font-style: normal;
    color: #272727;
    padding: 10px 20px;
}

.nav_list {
    display: flex;
    list-style: none;
}

.nav_list li {
    margin-right: 20px;
}

.nav_list li:last-child {
    margin-right: 0;
}

.nav_list li a {
    text-decoration: none;
    color: #272727; 
    font-size: 16px;
}

.nav_list li a.menu_active {
    border-bottom: 2px solid #272727;
}

a:click {
    animation: fadeOut ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}



.content {
    padding: 10px 20px;
}

.content h1 {
    font-size: 16;
}

.content h2 {
    font-size: 12;
}



.works_section {
    display: block;
}


.work {
    padding-top: 25px;
    padding-bottom: 50px;
}

.work h1 {
    display: none;
}

.work h2 {
    display: none;
}

.work p {
    display: none;
}


.cv_section {
    display: none;
}

.cv_section h1 {
    display: none;
}

.cv_section h2 {
    font-size: 16px !important;
    font-weight: 500;
    font-style: normal;
    color: #272727;
    margin-bottom: 4px;
    
}

.basic_info {
    font-size: 14px;
    padding-bottom: 20px;
}

.cv li {
    list-style: none;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 14px !important;
}


.contact_section {
    display: none;
}

.contact_section h1 {
    display: none;
}

.contact_section a {
    color: #272727;
    text-decoration: none;
    font-size: 16px !important;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 4px;
}


