@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400&display=swap');


/* Youtube: https://www.youtube.com/watch?v=Oat0bMq5NGc */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}

body {
    user-select: none;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #242739;
}

.container {
    position: relative;
    margin-top: 15px;
}

.info {
    color: white;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 5px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid white;
}

#canvas {

    border: 2px solid white;

}

.instructions {
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.instructions span {
    text-align: center;
    font-size: 13px;
}

.controls {

    display: none;
    height: 100px;
    border: 2px solid #6E7681;
}

.container .arrows {
    color: rgb(255, 255, 255, 0.6);
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.container .arrows ion-icon {
    font-size: 60px;

}

.container .heart {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.container .heart ion-icon {
    font-size: 60px;
    color: red;

}



.container .menu {
    width: 100%;
    height: 70%;
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.container .menu h2 {
    font-size: 5vw;
    color: #fdfdfd;
}

.container .menu button {
    background-color: transparent;
    color: white;
    font-size: 25px;
    padding: 8px 30px;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: padding 0.5s ease;
}

.container .menu .button:hover {
    padding: 8px 40px;
}

@media (max-width: 600px) {
    .controls {

        display: flex;

    }

    .instructions {
        display: none;
    }
}