body {
    background-color: #f0f8ff;
    font-family: "Comic Sans MS", cursive, sans-serif;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%; /* Adjusted for smaller screens */
    max-width: 800px; /* Keeps the width limited on larger screens */
    margin: 0 auto;
    border: 5px solid #ff69b4;
    background: linear-gradient(to bottom, #ffccff, #ffffff);
    padding: 20px;
    box-shadow: 0 0 20px #ff69b4;
}

header {
    border-bottom: 3px dashed #ff69b4;
    padding-bottom: 10px;
}

header h1 {
    color: #ff1493;
    font-size: 36px;
    text-shadow: 2px 2px #ff69b4;
}

header p {
    font-size: 18px;
    font-style: italic;
}

main {
    margin-top: 20px;
}

.about, .achievements {
    margin-bottom: 20px;
}

h2 {
    color: #ff4500;
    text-decoration: underline;
}

ul {
    list-style-type: square;
    text-align: left;
    margin: 0 auto;
    padding: 0;
    width: 90%; /* Adjusted for smaller screens */
    max-width: 60%; /* Keeps the width limited on larger screens */
}

ul li {
    margin: 10px 0;
    font-size: 18px;
}

footer {
    border-top: 3px dashed #ff69b4;
    padding-top: 10px;
    margin-top: 20px;
}

footer a {
    color: #ff1493;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Media query for mobile devices */
@media (max-width: 600px) {
    header h1 {
        font-size: 28px; /* Smaller font size for mobile */
    }

    header p {
        font-size: 16px; /* Adjusted font size */
    }

    ul li {
        font-size: 16px; /* Adjusted font size */
    }

    .container {
        padding: 15px; /* Reduced padding for smaller screens */
    }

    footer {
        padding-top: 5px; /* Reduced padding */
    }
}