*{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    margin: 0;
    padding: 0;
    /* background-color: black; */
    /* color: white; */
}

:root{
    --red-color: red;
    --default-color: #1DB954;
}

header{
    display: flex;
    justify-content: center;
    background-color: black;
    color: white;
}

header p{
    color: var(--default-color);
    font-weight: bolder;
}

main{
    margin-top: 5%;
}

main #developers{
    display: flex;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

main #content{
    display: flex;
    justify-content: space-around;
}

main #logo p{
    font-size: 5rem;
    font-weight: 900;
}

main #logo p span{
    color: #1DB954;
}

main #info{
    margin: 5%;
    font-size: medium;
}

main #span{
    color: var(--red-color);
    font-weight: bolder;
}

main #span_2{
    color: var(--default-color);
    font-weight: bolder;
    text-decoration: underline;
}

footer span {
    color: var(--default-color);
    font-weight: bolder;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    display: flex;
    justify-content: space-around;
    padding: 2rem;
}

footer #meta_media li {
    list-style-type: none;
}

#meta_media ul {
    display: flex;
    gap: 2rem;
}

#meta_media ul #facebook {
    color: #1877F2;
}

#meta_media ul #instagram {
    color: #d62976;
}

#meta_media ul #threads {
    color: white;
}

#meta_media ul #x {
    color: white;
}

#meta_media ul #whatsapp {
    color: #25D366;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    body{
        margin: 0;
        padding: 0;
        /* background-color: black; */
        /* color: white; */
    }

    main #developers {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    main #content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer {
        flex-direction: column;
        padding: 3rem;
        align-items: center;
        width: 100%;
        text-align: center;
        margin-top: 2rem;

    }

    #meta_media{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #meta_media ul {
        flex-direction: row; /* Ensure social media icons stay in a line */
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    body{
    margin: 0;
    padding: 0;
    /* background-color: black; */
    /* color: white; */
}

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        width: 100%;

    }

    main {
        margin-top: 3%;
        padding: 0 1rem;
    }

    main #logo p {
        font-size: 4rem;
        text-align: center;
    }

    main #info {
        font-size: medium;
        margin: 3%;
        text-align: center;
    }

    footer {
        padding: 2.5rem;
        align-items: center;
        width: 100%;
        text-align: center;
        margin-top: 2rem;

    }

    #meta_media{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #meta_media ul {
        flex-direction: row; /* Ensure social media icons stay in a line */
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {

    body{
        margin: 0;
        padding: 0;
        /* background-color: black; */
        /* color: white; */
    }

    header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        width: 100%;

    }

    main {
        margin-top: 5%;
        text-align: center;
    }

    main #logo p {
        font-size: 3rem;
        text-align: center;
    }

    main #info {
        font-size: small;
        margin: 2%;
        text-align: center;
    }

    footer {
        padding: 2rem;
        align-items: center;
        width: 100%;
        text-align: center;
        margin-top: 2rem;
    }

    #meta_media{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #meta_media ul {
        flex-direction: row; /* Ensure social media icons stay in a line */
        gap: 0.8rem;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {

    body{
        margin: 0;
        padding: 0;
        /* background-color: black; */
        /* color: white; */
    }

    header {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem;
        width: 100%;
    }

    main {
        margin-top: 10%;
        text-align: center;
    }

    main #logo p {
        font-size: 2rem;
        text-align: center;
    }

    main #info {
        font-size: small;
        margin: 1%;
        text-align: center;
    }

    footer {
        padding: 1rem;
        align-items: center;
        width: 100%;
        text-align: center;
        margin-top: 2rem;
    }

    #meta_media{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #meta_media ul {
        flex-direction: row; /* Ensure social media icons stay in a line */
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }

    
}
