body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/background-image.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

.container {
    
    text-align: center;
    background-color:white;
    padding: 20px;
    border-radius: 10px;
    color:Black;
}

.logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

#countdown {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.social-icons img {
    width: 40px;
    margin: 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 1;
}
