:root {
    --primary-color: #31D0B5;
    --background-color: #141414;
    --text-color: #fff;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    text-align: center;
}

h1 {
    font-family: 'Chewy', cursive;
    font-size: 3em;
    margin: 0;
}

h2 {
    font-family: 'Marta', sans-serif;
    font-size: 1.5em;
    margin: 10px 0;
}

p {
    font-family: 'Marta', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

header {
    padding: 20px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meme-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-family: 'League Spartan', sans-serif;
    font-size: 2em;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    font-weight: bold;
}

.button:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

footer {
    background-color: var(--background-color);
    padding: 100px 0 0;
    color: var(--text-color);
    text-align: center;
}

.footer-image {
    width: 100%;
    height: auto;
    opacity: 0.2;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.icons img {
    width: 50px;
    height: 50px;
}

.icons img:hover {
    transform: scale(1.05);
}

.footer-content {
    position: relative;
    padding-top: 60px;
}

.footer-content p {
    position: relative;
    z-index: 1;
}

.footer-content picture {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-content picture img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    .button {
        padding: 10px 20px;
        font-size: 1.5em;
        border-radius: 5px;
    }

    .icons img {
        width: 40px;
        height: 40px;
    }

    .footer-content p {
        font-size: 0.6em;
    }

    .container {
        min-height: 100vh;
    }

    .footer-content picture img {
        padding: 30px 0 0;
    }

    footer {
        padding: 50px 0px 0px 0px;
    }

    .icons {
        margin: 0px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1em;
    }

    .button {
        padding: 8px 16px;
        font-size: 1.5em;
        border-radius: 5px;
    }

    .icons img {
        width: 30px;
        height: 30px;
    }

    .icons {
        margin: 0px;
    }

    .content {
        padding: 10px;
    }

    .footer-content p {
        font-size: 0.6em;
    }

    .container {
        min-height: 100vh;
    }

    .footer-content picture img {
        padding: 30px 0 0;
    }

    footer {
        padding: 50px 0px 0px 0px;
    }
}

#play-button
     {            
position: fixed;
bottom: 10px;
right: 10px;
background-color: #000;
color: #fff;
border: none;
padding:20px;
cursor: pointer;
border-radius: 20px;

}

/*........................................*/

.popup{

    background-color: #31D0B5;
    width: 300px;
    padding: 15px 15px;
    position: absolute;
    transform: translate(-40%,-50%);
    left: 42%;
    top: 18%;
    border-radius: 20px;
    font-family: "Poppins",sans-serif;
    display: none;
    text-align: center;
}

.popup button{
    display: block;
    margin:  0px 0px 10px auto;
    background-color: transparent;
    font-size: 30px;
    color: #c5c5c5;
    border: none;
    outline: none;
    cursor: pointer;
}
.popup p{
    font-size: 14px;
    text-align: justify;
    margin: 20px 0;
    line-height: 25px;
    color: black;
}

.popup h2{
    font-size: 14px;
    color: black;
}
