

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    position: relative;
    min-height: 100vh;
}

/* Headings */
h1 {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    font-size: 30px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    align-items: center;
}

h2 {
    margin-top: 20px;
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: left;
    margin-left: 20px;
}

h3 {
    margin-top: 20px;
    font-size: 22px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: left;
    margin-left: 20px;
}

/* Paragraphs */
p {
    text-align: left;
    margin: 10px 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* Go back link */
.goback {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 16px;
    z-index: 1000;
}

.goback a {
    color: white;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.goback a:hover {
    color: #4CAF50;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
/* Dark theme */
body.dark-theme {
    background: linear-gradient(135deg, #050510 0%, #0e0824 50%, #1a0a2f 100%);
    color: #f0f0f0;
}

/* Media queries for larger screens */
@media (min-width: 768px) {
    h1 {
        margin-top: 100px;
        font-size: 50px;
    }

    h2, h3, p {
        font-size: 20px;
        margin-left: 100px;
        margin-right: 100px;
    }

    .goback {
        font-size: 20px;
        bottom: 60px;
        left: 100px;
    }
}
