
body {
    background-color: #a388c4; 
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #2e1d4d; 
}

.container {
  
    background: rgba(229, 186, 206, 0.4); 
    padding: 40px 60px;
    border-radius: 30px;
    backdrop-filter: blur(10px); 
    box-shadow: 0 8px 32px rgba(46, 29, 77, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
  
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
}


ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 20px 0;
}


a {
    text-decoration: none;
    color: #2e1d4d; 
    font-size: 1.4rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
}


a:hover {
    background-color: #2e1d4d; 
    color: #e5bace; 
    letter-spacing: 3px; 
}
