
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: #f0f0f0;
    position: relative;
    min-height: 100vh;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 10px #00ffff;
}


.card {
    background-color: rgba(30, 30, 30, 0.9);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.card h2 {
    color: #00ffff;
    margin-bottom: 10px;
}

.card p {
    color: #d0d0d0;
    margin: 6px 0;
}
.home {
    display: flex;
    padding: 10px 22px;
    background-color: #343a40; 
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    justify-content: center;
    align-items: center;

}

.home:hover {
    background-color: #495057; 
    transform: scale(1.05);
    background-color:rgb(199, 149, 58) ;
}

.home:active {
    transform: scale(0.97);
    background-color: rgb(199, 149, 58);
}

@media (max-width: 600px) {
    .home {
        font-size: 0.95rem;
        padding: 8px 18px;
    }
}
