body {
    margin: 0;
    padding: 0;
    background: black;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 900px;
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
    color: black;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.2); /* Subtle faded border effect */
    text-align: center;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

.button-container {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin: 5px;
}

.view-button {
    background-color: #007BFF;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.add-button {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
    font-weight: normal;
    border: 1px solid #ccc;
}

.add-button:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}
