@import url('https://fonts.googleapis.com/css2?family=Scope+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Beastly:wght@300..700&family=Rubik+Beastly&display=swap');


::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: transparent;
}

h1 {
    text-align: center;
    font-size: 10px;
    font-family: "Rubik Beastly";
    font-weight: normal;
    letter-spacing: 2px;
    max-width: auto;
    margin-top: 3px;
    padding: 10px;
}

h1 > img {
    max-width: 100%;
    width: 500px;
}

h2 {
    text-align: center;
    font-size: 15px;
    font-family: "courier";
    text-decoration: underline 1px dotted red;
    
}

body {
    font-family: "courier";
    text-align: center;
	font-size: 15px;
    background-color: #000;
    border-color: #fff;
    color: black;
    max-width: auto;
    margin: auto;
    padding: 0.5px;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    text-align: center;
    transition: rotate 0s ease;
}

img:hover {
    rotate: 1deg;
    z-index: 1;

}

p {
  text-align: center;
}

.main {
    border: 1px black dotted;
	display: inline-block;
	margin: auto;
	width: 700px;
	max-height: auto;
    padding: 9px;
    padding-bottom: 40px;
	background: aliceblue;
    box-sizing: border-box;
}

.main > .flex-container {
        display: flex;
        flex-wrap: wrap;
        flex-shrink: 1;
        border: 1px;
        padding: 10px;
        align-items: baseline center;
        align-content: space-evenly center;
        justify-content: center;
}

.main > .flex-container > div {
        background-color: #fff;
        margin: 5px;
        padding: 3px;
        font-size: 12px;
        width: 90px;
        height: 90px;
        text-align: center;
        border: 1px solid red;
        align-items: center;
        align-content: space-evenly center;
        
}

button {
        background-color: transparent;
        border: none;
        display: inline-block;
        padding: 0px;
        font-size: 12px;
        width: 90px;
        height: 90px;
    
}


br {
    margin: 5px;
}

.footnote {
    color: white;
    font-family: "Jura";
    font-size-adjust: auto;
    font-weight: normal;
    background-color: transparent;
}

a {
    color: red;
}

a:hover { 
    color: darkred; 
}

a:visited { 
    color: lavender; 

}

hr.dotted {
            border-bottom: 2px dotted;
            border-top: none;
            border-left: none;
            border-right: none;
            padding: 1px;
            padding-bottom: 40px;
            color: red; 
            width: 700px;
}

.tooltip {
    display:block;
    position:relative;
    max-width: 100%;
    
}

.tooltip .tooltiptext {
    visibility:hidden;
    max-width: 100%;
    text-align: center;
    word-wrap: break-word;
    margin: 0px;
    padding: 5px;
    position: relative;
    color: black;
    font-size: 13px;
    rotate: -10deg;
    
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    top: 100%;
    z-index: 3;
    font-family: "jura";
    font-weight: bold;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    color: white;
    padding-top: 8px;
    max-height: auto;
    transition: scale 4 transform 2s;
    
}

.newemoticon {
    position: absolute;
    background: none;
    max-width: 50px;
    width: 35px;
    left:   70px;
    z-index: 1;
    rotate: -20deg;
    
}


a:hover{
    font-style: bold;
}

a:active{
    font-weight: bold;
}

::-webkit-scrollbar{
    width: auto; 
}
    
::-webkit-scrollbar-track{
    background-color: transparent;
}

::-webkit-scrollbar-thumb{
    background-color: darkred;
}