/* @import url("https://fonts.googleapis.com/css2?family=Recursive&display=swap"); */
/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Signika:wght@400;600&display=swap");

/* https://material.io/resources/color/#!/?view.left=0&view.right=0&primary.color=1565C0&secondary.color=E64A19 */

* {
    /* font-family: "Recursive", sans-serif; */
    /* font-family: "Inter", sans-serif; */
    font-family: "Signika", sans-serif;
    letter-spacing: 0.8px;
}

h1,
h2,
h3,
h4 {
    font-weight: bold;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    min-width: 1200px;
    background-color: #fff;
    position: relative;
    min-height: 100vh;
}

#app:fullscreen {
    background-color: #fff;
}
#app:-webkit-full-screen {
    background-color: #fff;
}
#app:-moz-full-screen {
    background-color: #fff;
}

/* width */
::-webkit-scrollbar {
    width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #003c8f;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #e64a19;
}

@keyframes animation-fly {
    0% {
        top: var(--bottom);
        left: var(--left);
        transform: scale(1);
    }

    50% {
        bottom: 8px;
    }

    100% {
        bottom: 20px;
        left: 40px;
        /* transform: scale(0.5); */
        border-radius: 50%;
    }
}

.animation-fly {
    animation: animation-fly 2s both ease-in;
    display: block;
}

#my-fly-bird {
    display: none;
    width: 60px;
    height: 60px;
    background-color: red;
    position: absolute;
    background-size: cover;
    border-radius: 50%;
    background-position: center;
}

.post {
    margin-bottom: 30px;
}

.post a {
    font-weight: bold;
    text-decoration: none;
    color: #e64a19;
} 

.post-title{
    font-weight: bold;
    font-size: 23px;
}

.post-description {
    text-align: justify;
    font-size: 18px;
}