@import "../css/font.css";

body {
    background-color: hsl(83, 36%, 75%);
    /* font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif; */
    font-family: 'Poppins', sans-serif;
}

.labels {
    margin: auto;
    margin-top: 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: hsl(84, 27%, 18%);
    word-wrap: break-word;
    margin-bottom: 50px;
}

.frame {
    margin: auto;
    padding: 5px 0px;
    width: 56px;
    border: 2px solid hsl(84, 27%, 18%);
}

.btn {
    display: block;
    margin: auto;
    margin-top: 10px;
    background-color: hsl(84, 27%, 18%);
    color: hsl(83, 36%, 75%);
    padding: 10px 5px;
    text-transform: uppercase;
    font-size: 10px;
    border: 0px;
    cursor: pointer;
    border: 0px;
}

.btn-rounded {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.fa {
    font-size: 14px;
}

.flipx {
    transform: scaleX(-1);
}

#score {
    margin-top: 5px;
}

#outer-board {
    width: 365px;
    margin: auto;
}

#board {
    float: left;
    position: relative;
    background-color: hsl(83, 36%, 75%);
    width: 280px;
    height: 448px;
    margin: 10px auto;
    border: 2px solid hsl(84, 27%, 18%);
}

#stats {
    float: right;
    position: relative;
    background-color: hsl(83, 36%, 75%);
    width: 80px;
    height: 448px;
    margin: 10px auto;
    /* border: 2px solid #303a21; */
}

#banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 100px;
    background-color: hsl(84, 27%, 18%);
    color: hsl(83, 36%, 75%);
    z-index: 2;
    text-align: center;
}

#message {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 23px;
    margin: 10px;
    margin-top: 20px;
}

#new-game {
    font-weight: 100;
    cursor: pointer;
}

.block,
.empty {
    position: absolute;
    background-color: hsl(83, 36%, 75%);
    width: 28px;
    height: 28px;
}

.empty {
    opacity: 0.2;
}

.inner-tile {
    position: absolute;
    background-color: hsl(83, 36%, 75%);
    border: 4px solid hsl(84, 27%, 18%);
    width: 14px;
    height: 14px;
    margin: 3px;
}

.inner-inner-tile {
    position: absolute;
    background-color: hsl(84, 27%, 18%);
    width: 8px;
    height: 8px;
    margin: 3px;
}