body {
    background-color: black;
    color: gold;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1, h2 {
    margin: 20px 0;
}

.info, .videos {
    margin-bottom: 40px;
}

.video {
    margin-bottom: 20px;
}

iframe {
    width: 100%;
    height: 315px; /* Adjust height as needed */
    border: none;
}

.language-switch {
    margin-top: 20px;
    text-align: center;
}

.language-switch button {
    background-color: gold;
    color: black;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
}

.language-switch button:hover {
    opacity: 0.8;
}

.author-photo,
.portfolio-image {
    width: 150px; /* Set the desired width */
    height: 150px; /* Set the same height for a perfect circle */
    border-radius: 50%; /* This makes the image circular */
    display: block;
    margin: 20px auto; /* Center the image */
    object-fit: cover; /* Ensures the image covers the circle without distortion */
    border: 3px solid gold; /* Optional: add a border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: shadow effect */
}

