/* Start of style template */
:root {
    --theme-color: #285685;
    --font-color: #ffffff;
}
/* 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: 5%;
    width: 80%;
    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;
}
/* End of about me and project inspiration */