body {
    font-family: Arial, sans-serif;
    background-color: #0a1f443d;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #e74c3c;
}

p {
    font-size: 18px;
    color: #333;
}

a {
    font-weight: 600;
    text-decoration: dotted;
    color: #0a1f44;
}

img {
    max-width: 25rem;
    height: auto;
    margin-top: 20px;
}

.logo {
    width: 16rem;
}

@media only screen and (max-width: 650px) {
    .container {
        max-width: 600px;
        padding: 0px;
        background-color: #ffffff;
        border-radius: 0px;
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    }
}

