body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('background.png') no-repeat center center fixed; /* Add your image */
    background-size: cover;
    color: white;
    text-align: center;
}

header {
    background: rgba(0, 0, 0, 0.7);

    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header h2 {
    margin-top: 10px;
    font-size: 1.5em;
    color: #ffeb3b;
}

#home {
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}


.button-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 15px;
}


.btn {
    background: #6200ea;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s;
    width: 250px;
    text-align: center;
    font-weight: bold;
    display: block;
}

.btn:hover {
    background: #3700b3;
    transform: scale(1.05);
}
