.view.misc {
    xheight:100%;
    overflow-y: scroll;
    overflow-x:hidden;
    xfont-family: consolas,monospace;
    display:flex;
    flex-direction: column;
    justify-content: start!important;
    align-items: center;
    padding-top: 10px;
    padding-bottom:50px;


}
.view.misc > .info {
    xborder:1px solid grey;
    font-size:1em;
    border-radius:5px;
    width:95%;
    padding:10px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-bottom:10px;
}

.view.misc > .info > .game-title {
    color:rgb(0, 162, 255);
    xcolor: #ffd748;
    xtext-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 0vw #FA1C16, 0 0 .4vw #FED128, 1px 1px 0px #806914;
}




.view.misc > .info > img {
    width:100px;
    border:3px solid rgb(52, 52, 52);
    border-radius:5px;
    float:right;
    box-shadow: 
    5px 5px 5px 0px rgba(0, 0, 0, 0.5),
    0px 0px 15px 0px rgba(0, 0, 0, 0.5)
;
}

.view.misc > .button-cont {
    xborder:1px solid grey;
    width:95%;
    border-radius:5px;
    padding:20px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    xmargin-right:10px;
    background-color: rgba(0, 0, 0, 0.5);
}

.view.misc > .button-cont > .button {

    border:1px solid grey;
    width:100%;
    height: 50px;
    aspect-ratio: 1/1;
    xheight:100%;
    display:flex;
    justify-content: center;
    align-items: center;
    margin:5px;
    padding:10px;
    xfont-size:1.5em;
   

    position:relative;
    border-radius: 10px;

    background-color:rgb(37, 37, 37);

    border: 5px outset rgb(75, 75, 75);
    xbackground-color:rgb(46, 46, 46);
    box-shadow: 
        5px 5px 5px 0px rgba(0, 0, 0, 0.5),
        0px 0px 15px 0px rgba(0, 0, 0, 0.5)
    ;
}

.view.misc > .button-cont > .button:active {
    transform: scale(0.9);
    filter: brightness(0.8);
}

.view.misc > .button-cont > .button > .image{
    margin-right:10px;
}

.view.misc > .button-cont > .button.reset {
    background-color: rgb(107, 7, 7);
    border-color: rgb(162, 0, 0);
    xborder: 5px outset rgb(75, 75, 75);
}


