body {
    background-color: #1B1A1A;
    color:white;
    font-family: monospace, Courier;
    min-width:300px;
}
nav {
    display:flex;
    justify-content: space-around;
}
.game-screen {
    display:flex;
    justify-content: center;
}
.game-board {
    width:550px;
    min-width: 250px;
    height:550px;
    display:flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: 40px;
}
.board-section {
    width:90%;
    height:25%;
    padding:20px;
    display:flex;
    justify-content: space-around;
    align-items: center;
}
#computer-side {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: rgba(250,250,250,.2);
}
#player-side {
    background-color: rgba(250,250,250,.2);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
#status-bar {
    display:flex;
    flex-direction: column;
    align-items: center;
}
.footer-bar {
    display:flex;
    justify-content: center;
}
.tile {
    width:100px;
    height:100px;
    margin:10px;
    border-radius: 20px;
}
.blue {
    background-color: rgb(20,151,252);
}
.red {
    background-color: rgb(212,89,84);
}
.green {
    background-color: rgb(117,202,60);
}
.orange {
    background-color: rgb(232,164,51);
}
.activate-tile{
    animation: activateTile .5s ease-in-out;
    box-shadow: 0px 5px 15px;
}
.delay-1{
    animation-delay:0.6s;
}
.delay-2{
    animation-delay: 0.7s;
}
.delay-3{
    animation-delay: 0.8s;
}
@keyframes activateTile {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}
.animate {
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-name: animate-fade;
    animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
    animation-fill-mode: backwards;
}
.animate.glow {
    animation-name: animateGlow;
    animation-timing-function: ease;
}
@keyframes animateGlow {
    0% {
        opacity:0;
        filter:brightness(3) saturate(3);
        transform:scale(0.6, 0.6);
    }
    100% {
        opacity:1;
        filter:brightness(1), saturate(1);
        transform:scale(1,1);
    }
}

@media only screen 
    and (max-width: 390px) 
    and (orientation: portrait)
{
    .game-board {
        flex-direction: row;
        justify-content: center;
        font-size: 20px;
        text-align: center;
    }
    .board-section {
        flex-direction: column;
        justify-content: space-evenly;

    }
    .tile {
        height: 60px;
        width:60px;
    }
    #player-side {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 20px;
    }
    #computer-side {
    border-top-left-radius: 20px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 20px;
    }

    .board-section {
        width:20%;
        height:100%;
        padding:10px;
}
}