@font-face {
    font-family: Iosevka;
    src: url(../resources/fonts/iosevka-extendedbold.woff);
}

body {
    background-color: #0f0f0a;
    color: #fcf1b8;
    font-family: Iosevka, san;
}


@keyframes body_animation {
    from {
        color: transparent;
    }
    
    to {
        color: inherit;
    }
}


.main_body {
    display: block;
    padding: 50px;
    text-align: left;
}

a:link {
  color: #fcf1b8;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #fcf1b8;
  background-color: transparent;
  text-decoration: none;
}


#main_heading {
    text-align: center;
}

@keyframes remove_help_animation {
    from {
        color: inherit;
        top: 33%;
    }
    to {
        color: black;
        top: 115%;
    }
}

.remove_floating {
    animation-name: remove_help_animation;
    animation-duration: 1s;
    
    visibility: hidden;
}

@keyframes help_animation {
    from {
        color: black;
        top: 115%;
    }
    to {
        color: inherit;
        top: 33%;
    }
}

.hidden {
    animation-name: help_animation_hide;
    animation-duration: 2s;
    
    visibility: hidden;
}

.floating {
    width: fit-content;
    height: fit-content;
    position: fixed;
    top: 33%;
    left: 44%;
    margin-top: -100px;
    margin-left: -100px;
    
    border-radius: 15px;
    padding: 20px;
    
    animation-name: help_animation;
    animation-duration: 1s;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.help_msg {
    display: flex;
    align-items: center;
    gap: 40px;
}


@keyframes blurr_animation {
    from {
        filter: blur(1px);
    }
    to {
        filter: blur(4px);
    }
}

@keyframes unblurr_animation {
    from {
        filter: blur(4px);
    }
    to {
        filter: blur(0.1px);
    }
}


.blurr {
    animation-name: blurr_animation;
    animation-duration: 1s;
    
    filter: blur(4px);
}

.unblurr {
    animation-name: unblurr_animation;
    animation-duration: .4s;
    
    filter: none;
}

.highlight:hover {
    background-color: white;
    color: black;
}

.web_source a {
    color: yellow;
}