@font-face {
  font-family: dibaj; /* set name */
  src: url('/assets/fonts/DibajFaNum-Regular.woff'); /* url of the font */
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'dibaj', 'Tahoma', sans-serif;
}
.hero {
    position: relative;
    background: url('/img/background.jpg') no-repeat center center;
    background-size: cover;
    height: 75vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
p{
	line-height: 2em;
}
.hero h1 {
    background-color: rgba(0,0,0,0.5);
    padding: 1rem 2rem;
    border-radius: 10px;
}
.publication-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}
.category-badge {
    cursor: pointer;
}
footer a {
    text-decoration: none;
}
section {
    padding-top: 60px;
    padding-bottom: 60px;
}