@font-face {
    font-family: c64;
    src: url(assets/fonts/Commodore\ Pixelized\ v1.2.ttf);
}

body {
    color: #fff;
    font-family: c64;
    margin: 0px;
    background-color: #FF77A8;
    /* background-color: black; */
    font-size: large;
    cursor:pointer;
}
pre{
    font-family: c64,monospace;
}

img {
    image-rendering: pixelated;
}

.main{
    margin: auto;
    width: 350px;
    /* background-color: black; */
    margin-top: 100px;
}

.title{
    font-size: 75px;
}

#allbody{
    right: 0px;
    top: 0px;
    width: 30%;
    position: absolute;
    z-index:-10;    
}

#emojienim{
    text-align: center;
}

a{
    text-decoration: none;
}
a:link {
    color: white;
}

a:visited{
    color: white;
}

a:hover{
    background-color: white;
    color:black;
    cursor:grabbing;
}


::selection {
    background: black;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    /* top:-5px; */
    left: 200%;
    visibility: hidden;
    background-color: black;
    width: 500px;
    color: #fff;
    overflow: hidden;
    white-space: normal;
    text-align: left;
    border-radius: 7px;
    border: 3px solid white;
    padding: 5px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}