
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #013c68;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.header {
    width: 100%;
    max-width: 800px;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
    margin-bottom: 40px;
}

.header img {
    width: 24%;
    max-width: 250px;
    height: auto;
}

.container {
    max-width: 600px;
}



.message h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.message p {
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .message h2 {
        font-size: 1.2em;
    }

    .message p {
        font-size: 0.95em;
    }
}
