body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 150px;
}

.selected-language {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.selected-language .flag-icon {
    margin-right: 10px;
}

.language-list {
    list-style: none;
    margin: 5px 0 0;
    padding: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.language-list.show {
    display: block;
}

.language-list li {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-list li:hover {
    background-color: #f0f0f0;
}

.language-list li .flag-icon {
    margin-right: 10px;
}

.container {
    display: inline-block;
    max-width: 90%;
    padding: 20px;
}

.logo {
    max-width: 200px;
    margin-bottom: 30px;
}

h1 {
    font-size: clamp(1em, 4vw, 2.5em);
    margin-bottom: 15px;
    white-space: nowrap;
}

h3 {
    font-size: clamp(0.7em, 2.5vw, 1.5em);
    white-space: nowrap;
}

.social-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links a {
    font-size: 1.2em;
    margin: 10px 0;
    color: #333;
    transition: color 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: #0077b5; /* LinkedIn blue */
}

.social-links a i {
    width: 30px;
}

.social-links a span {
    margin-left: 10px;
}