/* Base styles: Mobile-first (default) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background-color: black;
    color: white;
    font-family: lato, sans-serif;
    font-weight: 400;
    text-align: center;
}

.Oops {
    color: red;
}

.page {
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column; /* Mobile: stack vertically */
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 40px;
}

.maintenace {
    color: yellow;
}

.left {
    padding: 0 50px;
    font-size: 32px;
    font-family: fantasy, sans-serif;
    color: white;
}

a {
    color: rgb(110, 119, 86);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
a:hover {
    color: green;
}

.right {
    padding: 0 20px;
    font-size: 18px;
    font-family: lato, sans-serif;
}

.timer-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    background-color: #484d0e;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    justify-content: center;
    align-items: center;
}

.time-box {
    background-color: black;
    padding: 20px 25px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    min-width: 80px;
    text-align: center;
    transition: transform 0.2s ease;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    -ms-border-radius:5px;
    -o-border-radius:5px;
}
.time-box:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.emoji {
    height: 2.5em;
    width: auto;
    vertical-align: middle;
}

.logo-container {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 60px;
}

.logo {
    height: 8em;
    width: auto;
    padding: 10px;
    display: block;
}
.logo-text {
    font-size: 0.7em;
    color: white;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 55px;
    
}

.site-maintenance {
    height: 10em;
    width: auto;
    padding: 2px;
}


/* Tablet (min-width: 600px) */
@media screen and (min-width: 600px) {
    .left {
        font-size: 36px;
    }

    .right {
        font-size: 20px;
    }

    .time-box {
        font-size: 1.3rem;
        padding: 25px 30px;
    }
}

/* Basic Laptop (min-width: 900px) */
@media screen and (min-width: 900px) {
    .page {
        flex-direction: row; /* Switch to horizontal layout */
        justify-content: space-between;
        padding: 50px;
    }

    .left {
        padding: 0 80px;
        font-size: 40px;
    }

    .right {
        padding: 0 60px;
        font-size: 22px;
    }

    .timer-container {
        gap: 15px;
        padding: 20px 40px;
    }

    .time-box {
        font-size: 1.5rem;
        padding: 30px 40px;
    }
}

/* Large Desktop (min-width: 1200px) */
@media screen and (min-width: 1200px) {
    .left {
        padding: 0 150px;
        font-size: 45px;
    }

    .right {
        padding: 0 100px;
        font-size: 25px;
    }

    .time-box {
        font-size: 1.7rem;
    }
}







