body {
    font-family: 'Arial', sans-serif;
    background-image: url('https://cdn.pixabay.com/photo/2016/12/16/15/25/christmas-1911637_1280.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    color: white;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #ff6347;
}

/* Add styles for the buttons container */
.buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.buttons-container button {
    margin: 5px;
    background-color: #ff6347;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.buttons-container button:hover {
    background-color: #cc4c30;
}

/* Add styles for the form */
form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin-bottom: 10px;
}

input {
    padding: 5px;
    margin-bottom: 10px;
}

button {
    padding: 8px 15px;
    background-color: #ff6347;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #ff6347;
}

/* Add some space between buttons and countdown */
main {
    margin-top: 20px;
}

/* Add styles for the countdown section */
.countdown {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 2em;
    color: #f8f8f8;
    transition: color 0.3s ease-in-out;
}

.countdown-label {
    font-size: 1.2em;
    color: #ccc;
}

footer {
    margin-top: 20px;
    color: #ccc;
}

/* Add styles for the music toggle button */
#toggleMusic {
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #ff6347;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#toggleMusic:hover {
    background-color: #cc4c30;
}

/* Add styles for the fixed banner */
.fixed-banner {
    background-color: #ff6347;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* Set a high z-index to ensure it appears above other elements */
}

.fixed-banner p {
    margin: 0;
}

/* Add this code to your CSS file */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px; /* Adjust the spacing between icons */
}

.social-icons img {
    width: 30px; /* Adjust the width of the icons */
    height: 30px; /* Adjust the height of the icons */
}

.social-icons img:hover {
  transform: scale(1.2);
}
/* Add styles for the play and pause buttons */
#playMusic,
#pauseMusic {
    margin: 10px; /* Adjust the margin to leave space between buttons */
    padding: 8px 15px;
    background-color: #ff6347;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;

}

#playMusic:hover,
#pauseMusic:hover {
    background-color: #cc4c30;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ffffff; /* White color for the links */
    margin: 0 10px; /* Spacing between links */
    text-decoration: none; /* Removes underline from links */
    transition: color 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.footer-links a:hover {
    color: #ff6347; /* Change color on hover */
}

footer {
    padding: 20px 0; /* Add padding to the top and bottom of the footer */
}
