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

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

header {
    text-align: center;
    padding: 20px;
}

.logo {
    width: 150px;
}

h1 {
    font-size: 2em;
    margin-top: 10px;
}

.play-button {
    background-color: #00b3b3;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin-top: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s infinite;
    cursor: pointer;
}

.play-button i {
    color: white;
    font-size: 50px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        background-color: #00b3b3;
    }
    50% {
        transform: scale(1.1);
        background-color: #00cccc;
    }
    100% {
        transform: scale(1);
        background-color: #00b3b3;
    }
}

.social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: #00b3b3;
}

.track-history {
    width: 80%;
    max-width: 600px;
    margin-top: 20px;
}

.track-history iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    padding: 0;
}

.footer-menu li {
    cursor: pointer;
    text-align: center;
}

.footer-menu li img {
    width: 35px;
    height: 35px;
    border-radius: 5px;
}

.footer-menu li:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0;
    }

    .footer-menu li {
        margin: 5px;
    }

    .footer-menu li img {
        width: 30px;
        height: 30px;
    }
}
