/* Styles for Pink Floyd's The Wall Page */

body {
    background-color: #f5f5dc; /* Gentle beige to soothe eyes while listening to great music */
    font-family: 'Arial', sans-serif;
}

h1 {
    color: #ec407a; /* Pink theme for Pink Floyd */
    text-align: center;
}

a {
    color: #42a5f5; /* Soft blue links */
    text-decoration: none;
}

a:hover {
    color: #1e88e5; /* Darker blue on hover */
    text-decoration: underline;
}

.container {
    margin: 20px;
    padding: 20px;
    max-width: 1000px;
    background-color: #ffffff; /* Clean white container */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.froge-emoji {
    font-size: 20px; 
}

footer {
    text-align: center;
    font-size: 12px;
    color: #9e9e9e;
    margin-top: 20px;
}