body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    padding-top: 40px;
}
.logo {
    width: 100px;
    height: 100px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}
.email {
    font-size: 1.5rem;
    margin: 10px 0;
    font-weight: bold;
}
p {
    font-size: 1.2rem;
    margin: 10px 0;
}
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
}
.language-selector select {
    background: black;
    color: white;
    border: 1px solid white;
    padding: 5px;
    font-size: 1rem;
}
.projects {
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    position: relative;
}
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel img {
    width: 100px;
    height: 100px;
    margin: 5px;
    border-radius: 5px;
}
.footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: gray;
}
