body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    height: 100vh;
    margin: 0;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: background-color 0.5s ease;
}
.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 162, 190, 0.219);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease, border-color 0.5s ease;
}
.container1 {
    margin-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 162, 190, 0.219);
}
.h1 {
    align-content: left;
    margin-top: 0;
}
p {
    text-align: left;
    margin-top: 0;
}

.p1 {
    font-size: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

.p1, button {
    font-family: 'Poppins', sans-serif;
}

.button {
    display: block;
    width: 20%;
    padding: 10px;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}
.button-1 {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #00b37d;
}
.button-1:hover {
    background-color: #d9534f;
}
.dark-mode-button {
    width: auto;
    margin-top: 20px;
    padding: 4px 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #333;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dark-mode-button:hover {
    background-color: #555;
}
body.dark-mode {
    background-color: #111;
}
.dark-mode .container {
    background-color: #222;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.219);
    color: white;
}

.dark-mode .dark-mode-button {
    background-color: #ffffff;
    color: #000;
}

.dark-mode .button, .dark-mode .button-1{
    background-color: #ffffff;
    color: #000;
}

.dark-mode .button:hover {
    background-color: #00b37d;
    color: #ffffff;
}

.dark-mode .button-1:hover {
    background-color: #d9534f;
    color: #ffffff;
}

.dark-mode footer {
    color: #ffffff; /* Change to white text */
}

footer {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #000; /* Change to black text */
    padding: 10px;
    font-size: small;
}