html,
body {
    height: 100%;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
    background-color: #1A202C;
    color: white;
    text-align: center;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
}

.logo {
    border-radius: 10px;
}

@media (min-width: 768px) {
    .title {
        font-size: 4.5rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}