body{
    font-family: "Open Sans", "Verdana";
    text-transform: uppercase;
    height: 100vh;
}

.btn{
    text-transform: uppercase;
}

.playarea.col-12{
    padding: 0;
}

.title, .setup, .restart{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: .2rem;
}

.title, .victory{
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    /* height: 40px; */
}

.victory{
    display: none;
    text-align: center;
    margin: 0 .5rem .2rem .5rem;
    border: 1px solid #cc0000;
    width: calc(100% - 1.2rem);
    background-color: #fcf0f0;
}

.restart{
    justify-content: center;
    /* height: 40px; */
}

.restart-btn{
    width: 50%;
}

.wide-btn{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu{
    width: 90%;
}

.run button{
    justify-content: center;
}

.tilerow{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: .2rem 0;
}

.tile{
    display: flex;
    justify-content: center;
    margin: 0 .2rem;
    height: 100%;
}

.tile:focus{
    border-style: outset;
    box-shadow: none;
}

.tile img{
    width: 100%;
    max-height: 100%;
}

.hidden img,
.hidden p{
    visibility: hidden;
}

.selectedcard, .paired{
    pointer-events: none;
}

:disabled{
    cursor: no-drop;
}

.images{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: .1rem 0;
}

.image{
    display: inline;
    margin: 0 .5rem;
}

.information{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    margin: 10%;
    width: 80%;
    height: 80%;
    background-color: white;
    border: solid 2px black;
    border-radius: 1%;
    padding: 5%;
    z-index: 100;
}

.info{
    cursor: pointer;
}

.info-close{
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 5%;
    z-index: 101;
}

a{
    color: #2bb673;
}

.textcard{
    /* overflow: auto; */
    white-space: nowrap;
}

@media screen and (max-width: 992px) {
    html{
        font-size: 32px;
    }

    .images{
        height: 2rem;
    }

    .image img{
        height: 1.2rem;
    }

    .info-close img{
        height: 1.2rem;
    }

    .hidden-setup{
        display: none;
    }

    .tile:active{
        background-color: initial;
    }
}