body {
    background-color: LightSeaGreen;
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    margin-top: 50px;
}

h1 {
    margin-bottom: 20px;
}

a { 
    text-decoration: none;
    color: #fff;
  } 

button {
    margin-top: 40px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #fff;
    color: LightSeaGreen;
}

#responseContainer {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background-color: #ecf0f1; /* Light background color */
    color: #2c3e50; /* Dark text color */
    max-width: 50vw; /* 2/3 of the viewport height */
    overflow-y: auto; /* Add scrollbar if content exceeds max height */
    text-align: center;
    font-size: 28px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: LightSeaGreen;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}
