.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    margin: 0 auto;
    background-color: var(--mybackground);
    min-height: 80vh;
    max-width: 800px;
    border-radius: 10px;
    font-size: 2rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.title {
    color: var(--myred);
    font-size: 4rem;
    font-weight: 700;
    border-left: none;
    padding-left: 0;
}