@media only screen and (max-width: 600px) {
    p {
        font-size: 12px;
    }
    label, input, button, span {
        font-size: 20px;
    }
    #removeThisCard {
        font-size: 26px;
    }
}
@media only screen and (min-width: 600px) {
    p {
        font-size: 18px;
    }
    label, input, button, span {
        font-size: 26px;
    }
    #removeThisCard {
        font-size: 32px;
    }
}
@media only screen and (min-width: 768px) {
    p {
        font-size: 24px;
    }
    label, input, button, span {
        font-size: 32px;
    }
    #removeThisCard {
        font-size: 38px;
    }
}
@media only screen and (min-width: 992px) {
    p {
        font-size: 26px;
    }
    label, input, button, span {
        font-size: 34px;
    }
    #removeThisCard {
        font-size: 40px;
    }
}

* {
    font-family: 'Card Characters', sans-serif;                 
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
::-webkit-scrollbar { 
    display: none;
}

button {
    -webkit-font-smoothing: antialiased;
    background-color: #222;
    border: none;
    color: #fff;
    display: inline-block;
    padding: 15px 30px;
    transition: all 0.1s ease-out;
  }
  
button:active {
transform: scale(0.8);
}

strong {
    font-family: 'Times New Roman', Times, serif;
}

#error {
    margin-top: 0.25em;
    color: red;
}

#hand {
    margin-left: 0.5em;
    margin-right: 0.5em;
    display: flex;
    justify-content: center;
}

#board {
    width: 95%;
    z-index: 10;
}

#board-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -100px;
}

.wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0% 3%;
    min-width: 465px;
    overflow: auto;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    background-color: rgb(255, 229, 197);
}

.main-container {
    max-width: 900px;
}

.card {
    position: relative;
    margin-right: 4px;
    z-index: 1;
    width: 13.5%;
    cursor: pointer;
}

.selected {
    top: 3vw;
    transition:
        top 100ms;
}

.notSelected {
    top: 10vw;
    transition:
        top 100ms;
}

.deleteCard {
    top: 20vw;
    transition:
        top 150ms;
}

.top-sleeve{
    position: relative;
    width: 100%;
    height: 3px;
    background-color:rgba(0, 0, 0, 0.75);
    z-index: 5;
}

.sleeve {
    position: relative;
    width: 100%;
    height: 150px;
    background-color: rgb(255, 229, 197);
    z-index: 5;
}

.highlighter {
    position: absolute;
    width: 8.6%;
    height: 9.5%;
    border-radius: 4.5%;
    z-index: 15;
    cursor: pointer;
}

.absolute {
    position: absolute;
}

.relative {
    position:relative
}

.right {
    right: 0;
}

.no-spacing {
    margin-top: 0;
    margin-bottom: 0;
}

.mx-1 {
    margin-right: 2%;
    margin-left: 2%;
}

.mx-3 {
    margin-right: 14%;
    margin-left: 14%;
}

.ml-1 {
    margin-left: 2%;
}

.mt-2 {
    margin-top: 5em;
}

.mt-1 {
    margin-top: 4.4em;
}

.mb-1 {
    margin-bottom: 1em;
}

.red {
    color: red;
}

.black {
    background-color: rgba(0, 0, 0, 0.5);
}

.green {
    background-color: rgba(0, 255, 100, 0.5);
}

.correction-9-clubs {
    position: absolute;
    top: 50.2%;
    left: 23%;
    width: 8.3%;
    height: 9.1%;
    z-index: 11;
}

.footer {
    padding-bottom: 3em;
}