body, html {
    margin: 0;
    padding: 0;
    background-color: #FFE6E6; /* Light pink background for the whole page */
    color: #000000; /* Black text for readability */
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: #FFFFFF; /* Pure white for the container background for contrast */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

header h1, header p {
    color: #BD1616; /* Dark red for header text for contrast and emphasis */
}

.section {
    margin-top: 30px;
}

.section h2 {
    color: #FFFFFF; /* White color for heading text */
    background-color: #FF2626; /* Bright red background for headings */
    padding: 5px 10px;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 1.5em;
}

.link {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #FF2626; /* Bright red for links */
    color: #FFFFFF; /* White text for links */
    text-decoration: none;
    border-radius: 5px;
    width: 80%;
    transition: background-color 0.3s, transform 0.2s;
}

.link:hover {
    background-color: #BD1616; /* Dark red for link hover state */
    transform: translateY(-2px); /* Slight lift effect on hover */
}

.mix, .social {
    border: 2px solid #BD1616; /* Dark red border for special sections or elements */
}

.social i {
    margin-right: 5px;
}

.instagram, .soundcloud, .mixcloud, .jungle-kitchen .link {
    transition: opacity 0.3s ease;
}

.instagram:hover, .soundcloud:hover, .mixcloud:hover, .jungle-kitchen .link:hover {
    opacity: 0.8; /* Lightens the link/icon on hover for all social links */
}

.dj-photo {
    width: 200px; /* Increased size for better visibility */
    height: auto; /* Maintains aspect ratio */
    border-radius: 50%; /* Keeps the photo circular */
    margin: 0 auto 20px; /* Centers the photo and adds space below */
    display: block; /* Ensures the photo is centered correctly */
    border: 3px solid #FF2626; /* Bright red border around the photo */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Adjusted shadow for depth and focus */
}

@media (max-width: 768px) {
    .dj-photo {
        width: 150px; /* Adjusts back to smaller size on mobile devices */
    }
}