@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Roboto+Slab:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background: #081b29;
    background-size: cover;
    background-position: center;
}

.mentions {
    width: 100%; /* Full width */
    max-width: 960px; /* Maximum width */
    padding: 20px; /* Padding around content */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Optional: adds shadow for better focus */
    color: white; /* Text color */
}

h1, h2 {
    color: #00abf0; /* Light blue color for headings */
}

p, li, a {
    color: white; /* White text color for readability */
}

h2 {
    margin-top: 20px; /* Adjusted margin */
}

p {
    margin-top: 10px;
    margin-bottom: 20px;
}

ul {
    padding-left: 20px; /* Proper indentation for lists */
}

a {
    color: #00abf0; /* Ensures links are visible */
    text-decoration: none; /* Removes underline */
}

a:hover {
    text-decoration: underline; /* Adds underline on hover for better interaction */
}

@media screen and (max-width: 768px) {
    body {
        padding: 10px; /* Adds padding around the content on smaller screens */
    }

    .mentions {
        padding: 10px;
    }

    h1, h2 {
        font-size: 1.5em; /* Smaller font size for smaller screens */
    }

    p, li {
        font-size: 0.9em; /* Smaller font size for text */
    }
}

@media screen and (max-width: 480px) {
    h1, h2 {
        font-size: 1.3em; /* Even smaller font size for very small screens */
    }

    p, li {
        font-size: 0.8em; /* Reducing font size for clarity */
    }
}
