@import url('https://fonts.googleapis.com/css2?family=Iosevka+Charon+Mono:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #e6e6fa;
    background: linear-gradient( #7676e7,  #f17cf5);
    background-attachment: fixed;
    font-family: 'Iosevka Charon Mono', sans-serif;
    overflow: hidden;
}

#prediction-text{
    font-size: 24px;
    color: #000000;
    opacity: 0;
    transform: scale(0) translateY(50px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#prediction-text.visible{
    opacity: 1;
    transform: scale(1) translateY(-35px);
    filter: drop-shadow(0 0 10px #fff);
}

#magic-ball{
    width: 600px;
    max-width: 90%;
    height: auto;
    image-rendering: pixelated;
    cursor: pointer;
    filter: drop-shadow(0 0 10px #fff);
    transition: transform 0.2s;
}

#magic-ball:active {
    transform: scale(0.95);
}

.magic-box{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.star {
    position: absolute;
    font-size: 25px;
    z-index: -1;
    user-select: none;
    animation: floating 3s ease-in-out infinite;
}

.s1 { 
    position: absolute;
    top: 10%; 
    left: 5%;
    font-family: monospace;
    white-space: pre; }
.s2 { top: 15%; right: 10%; }
.s3 { bottom: 20%; left: 10%; }
.s4 { bottom: 10%; right: 5%; }
.s5 { top: 45%; left: 15%; }
.s6 { bottom: 40%; right: 25%; }
.s7 { top: 25%; right: 45%; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}