@font-face {
    font-display: swap;
    font-family: "EB Garamond";
    font-style: normal;
    font-weight: 400;
    src: url("eb-garamond-v32-latin-regular.woff2") format("woff2");
}

html,
body {
    height: 100%;
    margin: 0;
    background-color: #f9f8f4;
}

body {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px,
            transparent 1px);
    background-size: 100% 3px;
}

h1 {
    font-family: "EB Garamond", "Times New Roman", Times, serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #2c2c2c;

    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);

    text-transform: uppercase;
    letter-spacing: 0.25em;
    text-align: center;

    border-top: 0.5px solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0.5rem;

    max-width: 80%;

    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    display: inline-block;
}

h1:hover {
    transform: translateY(-8px) scale(1.02);
    text-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
    letter-spacing: 0.35em;
}
