@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

* {
    font-family: "Indie Flower", cursive;
    font-weight: 400;
    font-style: normal;
}

html, body{
    color: #ffffff;
    text-shadow: 1px 1px 3px #999999;
    background-color: #a1c4fd;
    background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    overflow: auto;
}

div#main-wrapper {
    display: flex;
    flex-flow: column;
    overflow: auto;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

div#game-wrapper {
    max-width: 450px;
    min-width: 100px;
}

#sequence-blocks {
    width: 100%;
    display: flex;
    margin-top: 15px;
}
.sequence-block {
    width: 75px;
    height: 75px;
    background-color: #e9e9e9;
    border: 2px solid #5a5a5a;
    cursor: pointer;
}
#sequence-blocks.gameStarted:not(.playing) .sequence-block:hover:not(.highlight) {
    background-color: #fff;
    border: 2px solid #7e7e7e;
}
.sequence-block.highlight {
    background-color : #0A5EB0;
    border-color: #fff;
}
#MsgModal {
    color: #1a1a1a;
}

#MsgModal .modal-body {
    min-height: 300px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}