body {
    font-family: 'Roboto', sans-serif;
    background-color: #3c3b3f;
    color: #ffffff;
}

.container {
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    padding: 20px;
    margin: auto;
    width: 80%;
    background-color: #282828;
}

.language-switcher {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
}


.language-switcher img:hover {
    transform: scale(1.1);
}

.social-icons a {
    transition: all 0.3s ease-in-out;
    margin-right: 10px;
    text-decoration: none;
    color: inherit;
}

.social-icons a:hover {
    color: #007bff;
}

.social-icons i {
    font-size: 24px;
}

.profile-pic {
    border-radius: 50%;
    width: 250px;
    height: 250px;
}

.flag {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 0.6;
}

.flag.active {
    transform: scale(1.1);
    opacity: 1;
}

.second-container {
    margin-top: 20px;
}

