body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff; /* Set default font color to white */
}

header {
    background: #35424a;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
}

.profile-img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

nav {
    background: #ca7900; /* Set background to black */
}

.horizontal-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.horizontal-menu li {
    display: inline;
}

.horizontal-menu a {
    color: #ffffff; /* Set font color to white */
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.horizontal-menu a:hover {
    background: #35424a;
}

.email {
    padding: 20px;
    background: #ffffff;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #000000; /* Set font color to black for email section */
}

.email-section {
    text-align: center;
    color: #ffffff; /* Set font color to white */
}

.spotify-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.spotify-container iframe {
    width: 100%;
    max-width: 600px;
    height: 315px;
    border: none;
}

.spotify-section {
    text-align: center;
    color: #ffffff; /* Set font color to white */
}

/* Responsive Design */
@media (max-width: 768px) {
    .horizontal-menu {
        flex-direction: column;
    }

    .horizontal-menu li {
        display: block;
        width: 100%;
    }

    .horizontal-menu a {
        padding: 10px;
    }

    .profile-img {
        max-width: 100%;
    }

    .spotify-container iframe {
        height: auto;
    }
}