body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f9;
    text-align: center; /* Ensures everything is centered */
}

.welcome-note h1 {
    font-size: 5em;
    color: #333;
    margin-bottom: 20px;
}

.box-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.box {
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007BFF;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.box:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.no-dot {
    position: relative;
    font-style: normal;
}

.no-dot::after {
    content: '';
    position: absolute;
    top: -10px; /* Adjust based on font size */
    left: 50%;
    transform: translateX(-50%);
    width: 12px; /* Size of the dot */
    height: 12px; /* Size of the dot */
    background-color: red;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 500px) {
    .box-container {
        flex-direction: column; /* Stack boxes vertically */
        gap: 15px; /* Add spacing between boxes */
        margin-top: 20px; /* Add some space below the header */
    }

    .box {
        width: 200px; /* Wider buttons for better touch interaction */
        height: 50px; /* Taller buttons for easier clicking */
        font-size: 1em; /* Adjust text size for better readability */
    }

    .welcome-note h1 {
        font-size: 3em; /* Smaller font size for smaller screens */
    }
}
