* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hide {display: none;}

body {
    font-family: Arial, sans-serif;
    background-color: #03081e;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::before {
    content: '';
    position: fixed; /* Fixes the background image */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/Kamille-bg.jpg'); /* Add your image URL */
    background-size: cover;
    background-position: center;
    filter: blur(8px); /* Adjust blur level */
    z-index: -1; /* Ensure it stays behind the content */
}

.container {
    position: relative;
    z-index: 1; /* Keeps the content above the blurred background */
    text-align: center;
    background-color: rgba(3, 8, 30, 0.6); /* Adds transparency to the container */
    padding: 20px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    width: 580px;
}

.profile-pic {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between each link-container */
}

.link-container {
    display: flex;
    align-items: center;
    background-color: #0c1b35;
    border-radius: 5px;
    padding: 0 10px;
    transition: background-color 0.3s ease;
}

.link-container:hover {
    background-color: #22b496;
	color: #303030;
}

.link-container i {
    font-size: 30px;
    height: 100%; /* Full height of the container */
    display: flex;
    align-items: center; /* Vertically center the icon */
    justify-content: center;
}

.link-container a {
    text-decoration: none;
    color: #e0e0e0;
    padding-left: 10px;
    display: block;
    flex-grow: 1;
	padding: 15px;
}

.link-container:hover a {
	color: #030303;
}

div.description {
}

.language-switcher {
	position: absolute;
	top: 20px;
	right: 20px;
}

.language-switcher .dropdown-toggle {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 5px 10px;
	border-radius: 5px;
}