@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap');

.logo__cursor {
    background: #FF6600;
    animation: phase 2.3s infinite;
}

.underline {
    text-decoration: underline !important;
    font-style: italic;
}

@keyframes phase {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.reading-progress {
    width: 100%;
    height: 4px;
    background: #FF6600;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
}

body svg {
    fill: var(--color);
}