body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    background-image: linear-gradient(to right, #ff9933 0%, #ff3399 33%, #cc00cc 66%, #ff0000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: none;
    border-radius: 10px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

li {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
	gap: 1px; /* Space between the picture and text */
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px; /* Alternatively, use margin-right */
}

.toggle-container {
    margin-bottom: 20px;
}

.toggle-btn {
    background-color: #ff9933;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-btn.active {
    background-color: #cc00cc;
}

.toggle-btn:hover {
    background-color: #ff3399;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    li {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .toggle-btn {
        padding: 8px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    li {
        font-size: 1rem;
    }

    .toggle-btn {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}
