body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.main-wrapper{
    flex: 1;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #34495e;
    overflow: hidden;
}

nav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

.container {
    padding: 20px;
}

.project {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.experience {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 0px;
    position: relative;
    width: 100%;
    bottom: 0;
}

.profile-photo {
    float: left;
    width: auto;
    height: 300px;
    border-radius: 15px;
    margin-top: 20px;
    margin-right: 40px;
    margin-bottom: 20px;
}


.featured-project,
.call-to-action {
    background-color: #eef2f7;
    padding: 20px;
    margin-top: 20px;
    border-radius: 4px;
}

.featured-project h3,
.call-to-action p {
    margin: 0;
}

.social-logo {
    width: 32px;
    height: auto;
    margin-right: 10px; /* Adjusts space between logos */
}


