body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    
   background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/main-background-png.png');
    background-size: cover;
    background-position: center;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #7b2ff7; /* Purple glow */
}

nav a {
    display: inline-block;
    padding: 12px 24px;
    background-color: #7b2ff7;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
    font-weight: bold;
}

nav a:hover {
    background-color: #9d50bb;
    transform: scale(1.1);
}

main p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}


