
#guesses-container {
    width: 500px;
    height: 570px;
}

#input-container {
    position: relative;
    width: 500px;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 25px;
    box-sizing: border-box;
}

#header-container {
    width: 500px;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header {
    height: 90px;
    width: 90px;
    font-size: 0.9em;
}

.guess-circle {
    width: 80px;
    height: 80px;
    margin: 0 4px;
    font-size: 0.9em;
}

.guess-row {
    width: 500px;
}

.guess-header {
    width: 500px;
    font-size: 0.9em;
}

#submit-button {
    height: 50px;
    width: 150px;
    flex-shrink: 0;
}

#hint-button {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
}

#guess-input {
    height: 50px;
    flex: 1;
    min-width: 0;
}