body {
    margin: 0px;
    
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
    hyphens: manual;
    
    background-color: white;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;

    width: 100%;
    height: 100%;
    -moz-padding-start: calc(10px - 3px);
    padding-left: 10px;
    font-family: inherit;
    font-size: 16px;
    background-color: whitesmoke;
    text-align: center;
}
select::-ms-expand {
    display: none;
}

.wrapper {
    cursor: pointer;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
#cardPack {
    height: 50px;
    width: 100vw;
    background-color: whitesmoke;
    display: grid;
    place-items: center;
    font-size: 60px;
}
#container {
    display: grid;
    place-items: center;
    height: calc(100vh - 150px);
    width: 100vw;
    color: whitesmoke;
    font-size: 50px;
    opacity: 0;
}
#footer {
    height: 100px;
    width: 100vw;
    background-color: whitesmoke;
    display: grid;
    place-items: center;
    font-size: 60px;
}
#version {
    display: block;
    position: fixed;
    bottom: 5px;
    right: 5px;
    color: rgb(197, 197, 197);
    font-size: small;
}