body {
    font-family: Arial, sans-serif;
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
}
.container {
    text-align: center;
    padding: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
.header {
    font-size: 24px;
    margin-bottom: 20px;
}
.description {
    font-size: 18px;
    margin-bottom: 30px;
}
.btn-container {
    display: flex;
    justify-content: center;
}
.btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}
.btn:hover {
    background-color: #0056b3;
}