body {
    background-color: #000;
    color: #fff;
    font-family: 'Futura', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

hr {
  	margin-top: 20px; 
    margin-bottom: 20px;
  	border-color: #333;
}

a:hover {
    color: #E95951;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center; /* Adjust the overall text alignment */
}

.retro-text {
    font-size: 14px;
    line-height: 1.8;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.retro-text img {
    max-width: 500px;
    margin-right: 20px;
    border-radius: 10px;
    float: left;
}

.bio, .press-articles, .contact {
    margin-bottom: 20px;
}

.press-articles h2,
.contact h2 {
    margin-bottom: 10px;
    text-align: center; /* Center the heading text */
}

.press-articles ul,
.contact ul {
    list-style: none;
    padding: 0;
}

.press-articles ul li,
.contact ul li {
    margin: 10px 0;
    text-align: center; /* Center the list items */
}

.press-articles a,
.contact a {
    text-decoration: underline;
    text-align: center; /* Center the link text */
}

.artist-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Add this CSS for centering the text in the bio section */
.retro-text.bio {
    display: flex;
    align-items: center;
}

/* Remove text-align: left; from .retro-text */
.retro-text {
    font-size: 14px;
    line-height: 1.8;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

/* Add this CSS to center the text inside the bio */
.retro-text.bio div {
    text-align: center;
}

/* Add this CSS to style the social media section */
.social-media {
    text-align: center; /* Center-align the social media links */
    margin: 30px; /* Add margin to separate them from the content above */
}

/* Style the social media icons */
.social-media a {
    color: #fff; /* Set the icon color */
    margin: 0 10px; /* Add spacing between icons */
    transition: color 0.3s; /* Add a color transition on hover */
}

/* Style the social media icons on hover */
.social-media a:hover {
    color: #E95951; /* Change the color on hover */
}


/* Media query for screens with a maximum width of 768px (typical for mobile devices) */
@media (max-width: 768px) {
    .container {
        padding: 10px; /* Adjust container padding for mobile */
    }

    .retro-text {
        font-size: 12px; /* Reduce font size for mobile */
        flex-direction: column; /* Stack text below image for mobile */
        text-align: center;
    }

    .retro-text img {
        max-width: 100%; /* Set the max-width to 100% for smaller screens to ensure responsiveness */
        margin-right: 10px; /* You can adjust the margin as needed */
        float: none; /* Remove float to ensure the image is centered on mobile */
    }

    .press-articles ul li {
        text-align: center; /* Center the link text for mobile */
    }

    .social-media a {
        font-size: 0.7rem; /* Adjust the font size for the social media icons on smaller screens */
    }
}
