body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}
.container {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 600px;
}
.logo {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
}
.logo img {
    max-width: 200px;
    height: auto;
}
.icon {
    max-width: 50px;
    height: auto;
}
.message {
    margin-top: 50px;
    font-size: 24px;
    color: #333;
}
