@font-face{ 
    font-family: "Silkscreen";
    src:url("fonts/slkscr.ttf"); /*For other browsers*/  
}
body {            
    touch-action: manipulation;  
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    user-select: none; 
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-family: Silkscreen;
    font-size: 18px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#page-wrapper {
    border: 1px dotted red;
    width: 870px;
    height: 540px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#contents {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 4 equal-width columns */
    grid-template-rows: repeat(4, auto);  /* 6 rows */
    gap: 5px; /* space between grid items */
}
#title {
    display: none;
    font-size: 32px;
    margin: 20px 0px;
}
.cryptid-name {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
}
.cryptid-container {
    width: 120px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-contents: center;
    cursor: pointer;
}
.cryptid-img {
    width: 80px;
}
@-webkit-keyframes pulse {
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
@keyframes pulse {
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
.pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}