body {
    background-color: #000000;
    color: #d3d3d3;
    font-family: Calibri, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    text-align: center;
    padding: 50px;
}
header h1 {
    color: #ffa500;
}
header img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}
nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin-right: 10px;
}
nav ul li a {
    color: #ffa500;
    text-decoration: none;
}
nav ul li a:hover {
    text-decoration: underline;
}
main {
    padding: 20px;
    text-align: center;
}
h2 {
    color: #ffa500;
}
p, audio, iframe {
    color: #d3d3d3;
}

footer {
    text-align: center;
    padding: 10px;
}
footer h3 {
    color: #ffa500;
}
.social-media {
    margin-top: 20px;
}
.social-media a {
    margin: 10px;
}

.social-media-menu {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adjust the space between icons as needed */
}

.social-media-menu a img {
    width: 30px;
    height: 30px;
}