body {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 900px;
    background-color: aliceblue;
    font-family: 'Indie Flower';
}

.grid {
    width: 600px;
    height: 900px;
    position: relative;
    background-image: url(./images/background.png);
    font-size: 200px;
    text-align: center;
}

.doodle {
    width: 85px;
    height: 85px;
    position: absolute;
    left: 50px;
    background-image: url(./images/doodler-guy.png);
}

.platform {
    width: 85px;
    height: 15px;
    background-image: url(./images/platform.png);
    position: absolute;
}

.game-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 200px;
    align-items: center;
}

.title {
    font-size: 80px;
    margin-top: 200px;
    margin-bottom: 0px;
}

.start-btn {
    background-color: blanchedalmond;
    width: 150px;
    height: 50px;
    border-radius: 20px;
    font-size: 20px;
    border: none;
    font-family: 'Indie Flower';
    font-weight: bold;
    cursor: pointer;
}

.score {
    visibility: hidden;
    margin-top: 30px;
    font-size: 30px;
}

.directions {
    padding-top: 100px;
}