body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
h1 {
    font-size: 2rem;
    margin: 0 auto 1rem auto;
    padding: 0 2rem;
    max-width: 90%;
}
p {
    font-size: 1rem;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
    max-width: 90%;
}
img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
    padding: 1rem 0;
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icp-info {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    text-align: center;
}

.icp-info a {
    color: #666;
    text-decoration: none;
}

.icp-info a:hover {
    text-decoration: underline;
}
