body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Space Mono', monospace, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

.logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FF4500;
}

.soundcloud-link {
    color: #FF4500;
    text-decoration: underline;
    transition: color 0.3s;
}

.soundcloud-link:hover {
    color: #FFFFFF;
}

/* Importing Space Mono from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');
