@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,700;1,9..40,400;1,9..40,700&display=swap');

* {
    margin: 0;
    padding: 0;
    touch-action: manipulation;
}
html {
    background-color: #e9ebfa;
    font-family: 'DM Sans', sans-serif;
}
h1 {
    font-size: 40px;
}
h5 {
    margin-top: 5px;
}
a {
    color: #daac22;
}
.title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    vertical-align: middle;
    gap: 8px;
    margin-top: 20px;
}
.game-area {
    margin-top: 25px;
}
.credit-counter {
    margin-bottom: 25px;
    text-shadow: 0 0 5px #e9ebfa;
}
.actual-credits {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 40px;
    margin-right: 3px;
}
.links {
    position: relative;
    top: 10px;
}
.main {
    animation: fadeIn 0.5s ease;
}
.build {
    opacity: 0;
    position: relative;
    animation: buildFadeIn 1s 0.5s ease forwards;
}
.sites {
    opacity: 0;
    animation: fadeIn 1s 1s ease forwards;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@keyframes buildFadeIn {
    0% {
        opacity: 0;
        top: 30px;
    }
    100% {
        opacity: 1;
        top: 0px;
    }
}
#topaz {
    height: 175px;
    bottom: 55px;
    position: relative;
    animation: topazMove 2.5s infinite;
}
@keyframes topazMove {
    0% {bottom: 65px;}
    50% {bottom: 55px;}
    100% {bottom: 65px;}
}
#title-topaz {
    height: 50px;
    align-self: center;
}
#rekuto-topaz {
    position: relative;
    width: 700px;
    max-width: 90%;
    border-radius: 15px;
    transition-duration: 0.2s;
}
#rekuto-topaz:hover {
    box-shadow: 1px 1px 5px black;
}
#clicker {
    font-family: 'DM Sans', sans-serif;
    position: relative;
    bottom: 50px;
    background-color: #d62253;
    color: white;
    font-size: 30px;
    width: 125px;
    height: 50px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition-duration: 0.1s;
}
#clicker:hover {
    border-color: #d62253;
    background-color: #96183a;
}
#credit {
    width: 30px;
}