* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 50px 0;
    background-image: url("music.jpg");
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #aaa;
}

.hero {
    background-color: #222;
    text-align: center;
    padding: 60px 0;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ddd;
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    background-color: #1db954;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #6fc58d;
}

.socials {
    background-color: #333;
    text-align: center;
    padding: 50px 0;
}

.socials h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    background-color: #3b5998;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #4e69a2;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
}

footer p {
    font-size: 1em;
    color: #888;
}

/* Tablet view (800px and below) */
@media (max-width: 800px) {
    .container {
        width: 90%;
    }

    .hero h2 {
        font-size: 2em;
    }

    .streaming-links {
        flex-direction: column;
        gap: 15px;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile view (500px and below) */
@media (max-width: 500px) {
    header h1 {
        font-size: 2em;
    }

    header p,
    .hero p {
        font-size: 1em;
    }

    .btn,
    .social-btn {
        font-size: 1em;
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    .hero h2,
    .socials h3 {
        font-size: 1.5em;
    }

    .container {
        width: 95%;
    }
}
