body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-color: #3e5172;
    color: white;
    padding: 20px 10%;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
}
nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
section {
    padding: 20px 10%;
}
.projects, .about, .contact {
    margin-bottom: 40px;
}
.account-img {
    height: 250px;
    width: 250px;
    border-radius: 15%;
    padding: 15px;
}
h2 {
    color: #3e5172;
    margin-bottom: 15px;
}
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.projects-container .project {
    background: white;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 60px;
    min-height: 400px;
}
.projects-container .project img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}
.projects-container .project .btn {
    background-color: transparent;
    color: #3e5172;
    border: 2px solid #3e5172;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.projects-container .project .btn:hover {
    background-color: #3e5172;
    color: white;
}
.skills .content-section {
    background: white;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.skills .content-section h4 {
    margin: 10px 0;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 10%;
    margin-top: 20px;
}
footer p {
    margin: 0;
}
.contact .social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.contact .social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #3e5172;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    text-decoration: none;
}
.contact .social-icons a:hover {
    background-color: #2e3b59;
}
.contact-buttons {
    text-align: left;
    margin-top: 20px;
}
.contact-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #3e5172;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}
.contact-buttons a:hover {
    background-color: #2e3b59;
}
