@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap');

body {
    background: linear-gradient(180deg, #240046, #5a189a);
    color: #ffffff;
    font-family: 'Quicksand', 'Comic Sans MS', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

h1 {
    color: #c76bff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.container {
    text-align: center;
    /*border: 2px solid #ffd700;*/
    border-radius: 25px;
    padding: 40px;
    background-color: rgba(36, 0, 70, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

a {
    color: #c76bff;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px dotted #c76bff;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}