body {
    margin: 0; /* Ensure no default margin */
    padding: 0; /* Ensure no default padding */
    background-color: #000000; /* Pure black background */
    font-family: 'Arial', sans-serif; /* Friendly font */
    overflow-x: hidden; /* Prevent horizontal overflow */
}

.button-container {
    display: flex;
    gap: 40px; /* Space between buttons */
}

.arrow-button {
    width: 60px;
    height: 60px;
    background-color: #fff; /* Button background color */
    border: 2px solid #333; /* Button border color */
    border-radius: 8px; /* Slightly rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2); /* Subtle shadow */
}

.arrow-button:hover {
    background-color: #007BFF; /* Blue for hover */
    transform: translateY(-2px); /* Lift effect on hover */
}

.arrow-icon {
    width: 57px; /* Increased icon size */
    height: 57px; /* Increased icon size */
    fill: #333; /* Default icon color */
    transition: fill 0.3s; /* Transition for icon color */
}

.arrow-button:hover .arrow-icon {
    fill: #000000; /* Change icon color to black on hover */
}

.return-button-container {
    margin-top: 20px; /* Space above the return button */
}

.return-button {
    display: inline-block;
    font-weight: bold; /* Makes the font thicker */
    padding: 18px 36px; /* Increased padding for a larger button (25% larger) */
    background-color: #000000; /* Friendly blue color */
    color: magenta; /* Magenta text color for contrast */
    border: 2px solid #0056b3; /* Darker blue border color */
    border-radius: 8px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 30px; /* Increased font size for stronger visibility */
    font-family: 'Helvetica', sans-serif; /* Stronger, friendly font */
    transition: background-color 0.3s, transform 0.2s; /* Transition effects */
}

img {max-width:75%;}
.return-button:hover {
    background-color: cyan; /* Darker blue for hover */
    transform: translateY(-2px); /* Lift effect on hover */
}

/* Responsive Design */
@media (max-width: 600px) {
    .arrow-button {
        width: 50px; /* Smaller button size for mobile */
        height: 50px; /* Smaller button size for mobile */
    }

    .arrow-icon {
        width: 40px; /* Adjusted icon size for mobile */
        height: 40px; /* Adjusted icon size for mobile */
    }
}

