body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    background-image: url('../img/BG2.jpg');
    background-size: cover;
    position: relative; /* Needed for the overlay */
}


body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.container {
    padding: 20px;
    z-index: 1;
}

.company-logo {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
	border-radius: 20px;
}

/* Header Styling */
header h1 {
    font-size: 3em;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

header h2 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 50px;
    font-weight: normal;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.time-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 5px;
    min-width: 100px;
	border-top: 5px solid #ffcc00;
}

.time-box span {
    display: block;
}

.time-box #days, 
.time-box #hours, 
.time-box #minutes, 
.time-box #seconds {
    font-size: 4em;
    font-weight: bold;
    line-height: 1;
    color: #ffcc00;
}

.time-box .label {
    font-size: 0.8em;
    text-transform: uppercase;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* Footer Styling */
footer {
    margin-top: 50px;
    padding-top: 20px;
}
.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffcc00;
}

.copyright {
    margin-top: 30px;
    font-size: 0.75em;
    opacity: 0.7;
}
.designed-by {
    font-size: 0.8em;
    opacity: 0.7;
    margin-top: 10px;
}

.designed-by a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s;
}
.designed-by a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 600px) {
    
    header h1 {
        font-size: 2em;
    }
    
    header h2 {
        font-size: 1em;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .time-box {
        padding: 10px 15px;
        min-width: 70px;
        flex-grow: 1;
    }

    .time-box #days, 
    .time-box #hours, 
    .time-box #minutes, 
    .time-box #seconds {
        font-size: 2.5em;
    }

    .time-box .label {
        font-size: 0.7em;
    }

    .company-logo {
        width: 150px;
    }
	.designed-by {
	        font-size: 0.7em;
	}
}

@media (max-width: 400px) {

    header h1 {
        font-size: 1.2em;
        letter-spacing: 1px;
    }
    
    header h2 {
        font-size: 0.8em;
        margin-bottom: 20px;
    }

    .countdown-timer {
        gap: 3px;
    }
    
    .time-box {
        padding: 5px 2px;
        min-width: 20vw;
    }

    .time-box #days, 
    .time-box #hours, 
    .time-box #minutes, 
    .time-box #seconds {
        font-size: 1.8em;
    }

    .time-box .label {
        font-size: 0.55em;
    }

    .company-logo {
        width: 150px;
    }

    footer p, .social-links a {
        font-size: 0.7em;
    }
    
    .copyright, .designed-by {
        font-size: 0.6em;
    }
}