/* Start of style template */
:root {
    --theme-color: #285685;
    --font-color: #33ff66;
    --shade1: rgba(242, 38, 19, 0.5);
    --shade2: rgba(0, 255, 255, 0.5);
}
/* End of style template */




/* Start of project style */
body {
    background-color: black;
    font-family: var(--theme-font);
    color: var(--font-color);
    
    display: flex;
    justify-content: center;
}


.textCont {
    font-size: 150%;
    margin: 10%;
    width: 60%;
    height: 80%;
}
/* End of project style */




/* Start of generating the typing | blinking effect */
div.textCont::after {
    content : "|";
    animation: blinky 1s linear infinite;
}

@keyframes blinky {
    0% {opacity:0;}
    49.9% {opacity:0;}
    50% {opacity:1;}
    99.9% {opacity:1;}
}
/* End of generating the typing | blicking effect */




/* About me and project information */
footer {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 100;
}

footer > a {
    background-color: var(--theme-color);
    color: var(--font-color);
    font-weight: bold;
    font-family: "Megrim";
    font-size: 110%;
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 3px;

    transition: color 0.5s linear, box-shadow 0.5s ease-in;
}

footer > a:hover {
    color: rgba(34, 49, 63, 0.9);
    background-color: white;
    text-shadow: -1px -2px 1px var(--shade1),
        2px 2px var(--shade2);
    box-shadow: 0px 5px;
}
/* End of about me and project inspiration */