@font-face {
    font-family: "Satoshi-Regular";
    src: url("Satoshi_Complete/Fonts/OTF/Satoshi-Regular.otf");
}
@font-face {
    font-family: "Satoshi-Medium";
    src: url("Satoshi_Complete/Fonts/OTF/Satoshi-Medium.otf");
}
body {
    font-family: 'Satoshi-Regular', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}
body.dark-mode {
    background-color:#1B1B1B;
    color: #FFFFFF;
}
h1 {
    font-family: 'Satoshi-Medium';
    font-size: 50px;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
nav li {
    float:right;
}
li a {
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
nav {
    position: fixed;
    width: calc(100% - 40px);
    top: 20px;
    left: 20xp;
    right: 20px;
    border: 1px;
    border-style: solid;
    border-radius: 49px;
    background-color: #FFFFFF;
    font-size: 17px;
    z-index: 2;
    color: black;
}
nav.dark-mode {
    background-color:#1B1B1B;
    color: white;
}
nav.dark-mode li a{
    color: white;
}
nav a:hover {
    text-decoration: underline;
}
.linkedin {
    color: black;
    text-decoration: none;
}
.linkedin.dark-mode {
    color: white;
}
.linkedin:hover {
    text-decoration: underline;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 30px;
  top:10px;
  right:30px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #DCE1E8;
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px;
    border-style: solid;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 2px;
    top: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px;
    border-style: solid;
}

input:checked + .slider {
    background-color: #2F2E2E;
    border-color: white;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
    background-color: #1B1B1B;
    border-color: white;
}

/* Rounded sliders */
.slider.round {
    border-radius: 37px;
}

.slider.round:before {
    border-radius: 50%;
}
.slider.round:after {
    border-radius: 50%;
    background-color: black;
}
.content {
    width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#profile {
    margin-top:191px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 80px;
    border-bottom: 2px solid black;

}
#profile.dark-mode {
   border-bottom: 2px solid #FFFFFF;

}
.profile-info {
    display: flex;
    align-items: center;
    font-weight: 400;
}
.profile-info img {
    width:400px;         
}
.profile-pic {
    border-radius: 82px;
    border:1px;
    border-style: solid;
    margin-right: 20px;
    width: 300px;
    height: 300px;
    overflow: hidden;   
}
.profile-info-text {
    width: 577px;
}
.profile-info h1 {
    margin: 0;
    font-size: 2em;
}
.profile-info p {
    margin: 5px 0 0 0;
    
}
.skills {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid black;
    padding-bottom: 80px;
}
.category {
    width: 33%;
    padding-right: 60px;
    box-sizing: border-box;
    margin-bottom: 40px;
}
.tags {
    display: flex;
    flex-wrap: wrap;
}
.tags span {
    border-radius: 53px;
    padding: 6px 14px 5px 14px;
    margin: 5px 3px;
    /*    display: inline-block;*/
    font-size: 17px;
    line-height: 24px;
}
.skills h3 {
    text-transform: uppercase;
}
.blue span {
    background-color: #4368E9;
    color: white;
}

.red span {
    background-color: #DA516A;
    color: white;
}

.green span {
    background-color: #43AB60;
    color: white;
}

.orange span {
    background-color: #F67139;
    color: white;
}

.yellow span {
    background-color: #F5C623;
    color: black;
}
.place {
    width: 28%;
/*    width: 329px;*/
padding: 16px;
margin-right: 16px;
border: 2px solid black;
border-radius: 24px;
background-color: #F3F3F3;
}
.place.dark-mode {
    background-color: #2F2E2E;
    color: white;
    border: 2px solid white;

}

.description {
    width:72%;
/*    width: 663px;*/
padding: 16px;
margin-left: 16px;
border: 2px solid black;
border-radius: 24px;
}
.description.dark-mode {
    background-color: #1B1B1B;
    color: white;
    border: 2px solid white;
}
.job {
    display: flex;
    flex-direction: row;
    margin-bottom: 32px;
}
.place span {
    width:80px;
    height: 20px;
    background-color: black;
    color: white;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 27px;

}
.place.dark-mode span{
    background-color: #FFFFFF;
    color: #4B4444;
}
.curr {
    margin-top: 0;
}
.date {
    font-size: 0.9em;
    color: #666;
}
.experience {
    padding-top: 10px;
    padding-bottom: 80px;
    border-bottom: 2px solid black;
    font-weight: 400;
    color: #130A0A;
}
.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.experience.dark-mode {
   border-bottom: 2px solid white;
}
.skills.dark-mode {
   border-bottom: 2px solid white;
}
.project {
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    position: relative;
    padding: 20px 38px;
    font-weight: 400;
    color: #130A0A;
}
.project.dark-mode {
    background-color: #2F2E2E;
    color: white;
    border: 1px solid white;
}
.project.project-link.dark-mode {
    color: #2F2E2E;
}
.ai-projects.dark-mode {
   border-bottom: 2px solid white;
}
.ai-tags.dark-mode a{
    background-color: #272626;
    color: white;
}
.ai-tags.dark-mode a:hover{
    background-color: #2F2E2E;
}


.project-header {
    margin-bottom: 15px;
}

.projects h2 {
    margin: 10px 0;
}

.project ul {
    padding-bottom: 20px;
}

.project ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.project-link {
    display: inline-block;
    margin-top: 10px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding-top: 20px;

}

.project-link:hover {
    text-decoration: underline;
}

.ai-projects {
    margin-top: 40px;
    padding-bottom: 80px;
    border-bottom: 2px solid black;

}

.ai-projects h2 {
    margin-bottom: 20px;
}

.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-tags a {
    background-color: #ECECEC;
    border-radius: 10px;
    padding: 5px 10px;
    display: inline-block;
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: bold;
    border: 1px solid black;

}

.ai-tags a:hover {
    background-color: #dfdfdf;
    
}
.lang {
    background-color: #4368E9;
    color: white;
}

.frame {
    background-color: #DA516A;
    color: white;
}

.test  {
    background-color: #F67139;
    color: white;
}
.contact {
    display: flex;
    justify-content: space-between;
}
.contact h4 {
    text-transform: uppercase;
    opacity: 60%;
}
.contact-info {
    flex:1;
}
#footer {
 margin-top: 160px;
 text-align: center;
 font-weight: 500;
 color: #130A0A;
 opacity: 60%;
}
.subtitle {
    opacity: 60%;
}
#footer.dark-mode {
    color: white;
}
@media (max-width: 768px) {
    .profile-info {
        flex-direction: column;
        text-align: center;
    }

    .category, .job, .project {
        flex: 1 1 90%;
    }