@import url('https://fonts.googleapis.com/css2?family=Expletus+Sans:ital,wght@0,400..700;1,400..700&family=Special+Elite&display=swap');
body {
    margin: 0;
    font-family: "Special Elite", sans-serif;
    background-color: #2c2a60; 
    color: #ffffff; 
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(50, 50, 100, 0.8); 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: clamp(2rem, 2rem + 5vmin, 3rem);
    text-align: center;
    letter-spacing: 2px;
    color: rgb(255, 153, 204);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 1.5rem + 5vmin, 2.5rem);
    margin-top: 2rem;
}

p {
    font-size: clamp(1rem, 1rem + 2vmin, 1.5rem);
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 1rem;
}

li {
    font-size: clamp(1rem, 1rem + 2vmin, 1.5rem);
    line-height: 1.4;
}

.back-button {
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: rgba(182, 172, 213, 0.5);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: rgba(155, 95, 156, 0.6);
}
