@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Manrope", sans-serif;
}


body {
    background-color: #F1E7E7;
}

.game-screen {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.message {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 700;
}
.row {
    display: flex;
}
.cell {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border: 2px solid #E69DB8;
    font-size: 40px;
    color: #E69DB8;
}

#players-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 400px;
    margin-top: 40px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.form-row label {
    font-weight: 500;
}

.form-row input[type='text'] {
    width: 150px;
    border: 2px solid #E5E7EB;
    padding: 0px 6px;
    border-radius: 4px;
}

.form-row input[type='text']:focus {
    border-radius: 4px;
    outline: 1px;
    border-color:#E69DB8;
    box-shadow:
      0 3px 3px hsl(0deg 0% 0% / 0.1);
}

.form-row button[type='submit'] {
    color: white;
    font-size: 14px;
    background-color: #E69DB8;
    padding: 6px 12px;
    border: none;
    border-radius: 3px;
    margin: auto;
    margin-top: 10px;
}
