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

.wordle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.line.blank {
    height: 80px; /* Adjust the height as needed for the blank line */
}

.letter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

.space {
    width: 20px; /* Adjust the width as needed */
}

.gray {
    background-color: #787c7e;
}

.yellow {
    background-color: #c9b458;
}

.green {
    background-color: #6aaa64;
}

