body {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 900px;
    flex-direction: row;
    font-family: 'Nunito', sans-serif;
    background-color: blanchedalmond;
}

.grid-container {
    display: flex;
    flex-direction: row;
}

.grid {
    width: 400px;
    height: 800px;
    border: solid black 2px;
    display: flex;
    flex-wrap: wrap;
}

.block {
    height: 40px;
    width: 40px;
    background-color: whitesmoke;
}

.taken {
    height: 40px;
    width: 40px;
}

.blue {
    background-color: #DD6F5E;
}

.yellow {
    background-color: #34FEBE;
}

.green {
    background-color: #9C3FA1;
}

.red {
    background-color: #7C87F4;
}

.purple {
    background-color: #9A2838;
}

.mini-grid {
    margin-left: 50px;
    width: 160px;
    height: 160px;
    display: flex;
    flex-wrap: wrap;
    background-color: red;
    border: solid black 2px;
}

.game-info {
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score {
    font-size: 30px;
}

#start-btn {
    width: 150px;
    height: 50px;
    margin-top: 30px;
    font-size: 22px;
    background-color: black;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

.directions {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

.directions>h3 {
    font-size: 24px;
    border-bottom: 1px solid black;
    width: 93px;
    margin-bottom: 10px;
}