
.box {
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 2vw; /* Responsive font size */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home {
    text-align: center;
    justify-content: center;
    align-items: center;
}
.buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
.button {
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.5vw; /* Responsive font size */
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.button.yes {
    background-color: green;
    color: white;
}
.button.no {
    background-color: red;
    color: white;
}
.button:hover {
    opacity: 0.8;
}
/* Adjustments for smaller screens */
@media (max-width: 600px) {
    .box {
        font-size: 4vw;
        padding: 15px;
    }
    .button {
        font-size: 3vw;
        padding: 8px 16px;
    }
}
/* Adjustments for larger screens */
@media (min-width: 1200px) {
    .box {
        font-size: 1.5vw;
    }
    .button {
        font-size: 1vw;
    }
}
/* pop up back */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.popup-content p {
    font-size: 18px;
    margin: 20px 0;
    color: #555;
}

.popup-buttons {
    display: flex;
    justify-content: space-around;
}

.popup-buttons a {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    transition: background-color 0.3s;
}

.popup-buttons a:hover {
    background-color: #0056b3;
}

.popup-buttons a.no {
    background-color: #dc3545;
}

.popup-buttons a.no:hover {
    background-color: #c82333;
}