body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: white;
    max-width: 800px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-height: 80vh;
    overflow-y: auto;
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    font-size: 1.2em;
    color: #7f8c8d;
    margin-bottom: 30px;
}



.languages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.language {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1em;
    transition: transform 0.2s;
}

.language:hover {
    transform: scale(1.1);
}

.projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.project-link {
    display: inline-block;
    background-color: #2ecc71;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.2s;
}

.project-link:hover {
    background-color: #27ae60;
}

.gallery {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.gallery img {
    flex: 0 0 auto;
    width: 150px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    scroll-snap-align: start;
}

.gallery a {
    flex: 0 0 auto;
    text-decoration: none;
}

.gallery img:hover {
    transform: scale(1.05);
}

.gallery::-webkit-scrollbar {
    height: 8px;
}

.gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

.back-link {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.2s;
    margin-top: 20px;
}

.back-link:hover {
    background-color: #2980b9;
}

.download-icon {
    display: inline-block;
    width: 100px;
    height: 30px;
    background-color: #3498db;
    color: white;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.download-icon:hover {
    background-color: #2980b9;
}

footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #95a5a6;
}