:root {
    --background-color: #2c2a29;
    --text-color: #ffffff;
    --highlight-color: #2bc591;
    --border-color: #555;
    --container-bg-color: #2a2a2a;
}

body {
    background-color: var(--background-color);
    font-family: system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1 {
    text-align: center;
    margin: 0 auto;
}

a {
    color: var(--text-color);
    text-decoration: underline;
}

.container {
    max-width: 750px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.welcome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    flex-wrap: wrap;
}

.welcome-container-left {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.welcome-container-left img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin: 4px;
}

.welcome-container-right {
    flex: 2;
    margin-left: 20px;
}

.welcome-container-right p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.welcome-container-right ul {
    list-style: none;
    padding: 0;
}

.welcome-container-right li {
    margin-bottom: 10px;
    font-size: 1em;
}

.about-me-list li {
    border-bottom: 0.5px solid #e5e7eb;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.about-me-list li:last-child {
    border-bottom: none;
}

.keep-in-touch-container {
    border: 1px solid var(--border-color);
    padding: 0 30px 30px;
    text-align: center;
    margin-top: 50px;
    background-color: var(--container-bg-color);
    border-radius: 10px;
}

.keep-in-touch-container h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: var(--text-color);
}

.keep-in-touch-container ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.keep-in-touch-container li {
    display: flex;
    align-items: center;
    margin: 0;
}

.keep-in-touch-container svg {
    fill: var(--text-color);
    margin-right: 8px;
}

.keep-in-touch-container a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.keep-in-touch-container a:hover {
    color: var(--highlight-color);
    transform: scale(1.05);
}

/* Mobile screens */
@media (max-width: 600px) {
    .welcome-container {
        flex-direction: column;
    }
    .keep-in-touch-container {
        margin-top: 10px;
    }
    .keep-in-touch-container ul {
        flex-direction: column;
    }
}
