@font-face {
    font-family: 'October Crow';
    src: url(../src/OctoberCrowwithaccents.ttf);
}

html {
    scroll-behavior: smooth;
    font-family: 'October Crow';
    background-image: url(../assets/parchment.jpg);
    background-repeat:repeat;
}

/* Header */

.header{
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 2vh 0;
}

.links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    & > a {
        margin: 0 1vw;
        background-color: #f2f2f2;
        border: 1px solid #ccc;
        border-radius: 5px;
        padding: 10px;
        text-decoration: none;
        color: black;
        &:hover {
            color: #ccc;
        }
        transition: all 0.3s ease;
        white-space: nowrap;
    }
}

/* Responsive */

@media screen and (max-width: 768px) {
    .header{
        flex-direction: column;
    }
    .links > a {
        margin: 1vh 0.5vw;
    }
}

/* UP */
.up{
    position: fixed;

    bottom: 20px;
    right: 30px;
    z-index: 2;
    border: 1px solid #ccc;
    outline: none;
    background-color: #f2f2f2;
    color: black;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    &:hover {
        background-color: #ccc;
    }
    transition: all 0.3s ease;

    display: flex;
    justify-content: center;
    align-items: center;
}

kbd {
    background-color: #eee;
    border-radius: 3px;
    border: 1px solid #b4b4b4;
    box-shadow:
      0 1px 1px rgba(0, 0, 0, 0.2),
      0 2px 0 0 rgba(255, 255, 255, 0.7) inset;
    color: #333;
    display: inline-block;
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1;
    padding: 2px 4px;
    white-space: nowrap;
    cursor:none;
}

input{
    font-family: 'October Crow';
}
