body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Oswald',Arial, sans-serif;
    color: #fff;
    background: url('imgs/01-optimized.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

/* Semi-transparent overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 600px;
}

h1 {
    font-size: 4rem; /* Increased from 3rem */
    margin-bottom: 10px;
    font-weight: 700; /* Oswald Bold */
}

p {
    font-size: 1.6rem; /* Increased from 1.2rem */
    line-height: 1.5;
    font-weight: 400; /* Oswald Regular */
}

/* Right side clickable area */
.right-click-area {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 3;
    cursor: pointer;
}

/* Time counter styling */
.time-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    font-size: 1.2rem; /* Increased from 1rem */
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}
.time-counter {
    color: red;
}
@media (max-width: 600px) {
    h1 {
        font-size: 3rem; /* Increased from 2rem */
    }

    p {
        font-size: 1.4rem; /* Increased from 1rem */
    }

    .time-counter {
        font-size: 1rem; /* Increased from 0.9rem */
        padding: 8px 15px;
    }
}

 #likeButton {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        #likeButton:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
        #likeCount {
            margin-top: 10px;
            font-size: 18px;
        }
        #message {
            margin-top: 10px;
            color: red;
            display: none;
        }
