/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
}

.background {
    background: linear-gradient(135deg, rgba(15, 7, 48, 0.9), rgba(0, 32, 63, 0.9)), url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.container:hover {
    transform: scale(1.05);
}

.message h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.message p {
    font-size: 1.5em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    background-color: #ff4081;
    color: white;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: #e91e63;
    transform: translateY(-3px);
}
