/* Navbar styles */
.navbar {
    background-color: #000000;
    overflow: hidden;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.navbar li {
    float: left;
    padding-left: 20px;
    margin-left: 50px;
}

.navbar a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    color: #FFB22C;
}

.navbar a.active {
    color: #FFB22C;
}

/* Footer */
footer {
    background-color: #000000;
    overflow: hidden;
}

footer img {
    width: 20px;
    height: 20px;
    margin: 3px;
}

footer a {
    color: #f2f2f2;
    text-decoration: none;
    transition: transform 0.2s;
}

footer a:hover {
    color: #FFB22C;
    transform: scale(1.1);
}



/* section:not(#home, #contact) {
    align-items: center;
    text-align: center;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
} */

.img-skill {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px;
}

.img-work {
    width: 250px;
    height: 150px;
    margin: 30px;
}

.img-education {
    width: 150px;
    height: 150px;
    margin: 30px;
}

.card-skill,
.card-work,
.card-education {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-skill {
    margin: 20px;
    max-height: 300px;
}

#home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* background-color: #000000; */
    /* color: #FFFFFF; */
}

#home .name {
    font-size: 50pt;
    font-weight: bold;
    text-align: center;
}

#home .description-2 {
    /* margin-top: 10px; */
    font-size: 14pt;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#home .description-1 {
    margin-top: 50px;
    font-size: 18pt;
    align-items: center;
}

/* About */
#about {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* background-color: #000000; */
    /* color: #FFFFFF; */
}



#about .left-section {
    margin-top: 20px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;
}

#about .right-section {
    flex: 1;
    margin-top: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-left: 50px;
    text-align: left;
}



/* Contact */
#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #eee;
}

#contact .left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;  
}

#contact .right-section {
    flex: 1;
    margin-top: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-left: 50px;
    text-align: left;
}

#contact .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    padding-left: 10px;
}

#contact .card:hover {
    transform: scale(1.05);
}

.contact-img {
    width: 60px;
    height: 60px;
    margin: 5px;
}

#contact .right-section .row {
    align-items: center;
}

#contact .left-section .contact-title {
    margin-top: 15px;
    margin-left: 10px;
    font-size: 22pt;
    font-weight: bold;
}

#contact .left-section .contact-desc {
    font-size: 14pt;
    margin-top: 10px;
    margin-left: 10px;
    color: #686D76;
}

#contact .right-section h5 {
    margin: 0;
    /* font-weight: strong; */
}
  
#contact .right-section p {
    margin: 0;
}

/* Portfolio */
#portfolio {
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#portfolio .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
    padding: 10px;
    height: 250px;
    
    transition: transform 0.2s;
}

#portfolio .card img {
    width: 300px;
    height: 150px;
    border-radius: 10px;
}

.card:hover {
    transform: scale(1.03);
}

#skill {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}