@import url('https://fonts.googleapis.com/css?family=Major+Mono+Display|Montserrat|VT323');

:root {
    padding: 0;
    margin: 0;
}

body {
    background: #10455B;
    font-family: 'Montserrat', sans-serif;
}

/*** Navbar ***/

nav {
    font-family: 'Major Mono Display', monospace !important;
}

.navbar-brand {
    font-size: 36px;
}

.controller {
    display: flex;
    flex-direction: row;
    background-color: whitesmoke;
    justify-content: center;
    margin: 30px 0;
    align-items: center;
    box-shadow: 0px 5px 5px rgba(22, 22, 22, 0.281), 0px -5px 5px rgba(22, 22, 22, 0.281);
}

#console {
    font-family: 'VT323', monospace;
    background-color: black;
    color: rgb(9, 218, 2);
    height: 200px;
    width: 400px;
    margin: 0 100px;
    border: solid 7px rgb(7, 201, 0);
    border-style: inse;
    padding: 30px;
    text-align: center;
    font-size: 48px;
    vertical-align: middle;
}

.joystick {
    padding: 20px;
    margin: 20px 0px;
    background-color: rgb(46, 46, 46);    
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
    border: solid rgb(26, 26, 26) 20px;
    border-style: double;
    transition: 0.2s;
}

.joystick:hover {
    transform: rotate(10deg);
}

.joystick button {
    margin: 5px 3px;
    font-size: 32px;
    border: none;
    padding: 5px;
    border-radius: 50%;
    color:rgba(0, 0, 0, 0.1);
    box-shadow: 0px 7px 5px;     
    transition: 0.1s;
}

button:hover {
    transform: scale(1.1);
}

button:focus {
    outline: none;
}

button:active {
    transform: scale(0.9);
}

#up {
    background: yellow;
}

#right {
    background: red;
}

#left {
    background: blue;
}

#down {
    background: greenyellow;
}

.intro {
    padding: 25px;
    color: white;
}

.intro p {
    font-weight: bold;
    font-size: 48px;
}

.intro span {
    margin-left: 40px;
    font-size: 28px;
}

.tutorial {
    background: white;
    padding: 40px;
    margin: 20px;
}

.tutorial p {
    font-size: 20px;
    padding-left: 20px;
    margin: 20px 0;
}

.info {
    background: lightgray;
    padding: 10px;
}

.buttons {
    display: flex;
    flex-direction: column;
}

.btn-sound {
    font-family: 'VT323', monospace;
    background: #2AA1AF;
    padding: 10px;
    font-size: 28px;
    color: white;
    margin: 20px;
    transition: .3s;
}

.btn-sound:hover {
    color: #E2F0F1;
    background: #10455B;
}

canvas {
    background: white;
    padding: 30px;
    margin: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
 