/* Add your custom styling here */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s;
}

.dark-mode {
    background-color: #9e9e9e;
    color: #fff;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
}

.logo img {
    max-width: 300px;
    margin-top: 30px;
  margin-bottom: 20px;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
}

h1 {
    font-size: 24px;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.link-button {
    display: block;
    width: 100%;
    max-width: 400px; /* Set max-width for desktop */
    margin: 0 auto 10px; /* Center-align buttons and add some margin */
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    padding: 15px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #0056b3;
  color: #fff;
}

.footer {
    background-color: #202124;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.container {
    margin-bottom: 40px;
}