@font-face {
    font-family: 'DT Getai Grotesk Display';
    src: url('./fonts/DT Getai Grotesk/DTGetaiGroteskDisplay-Black.ttf') format('truetype');
}
@font-face {
    font-family: 'Lexend Regular';
    src: url('./fonts/Lexend/Lexend-Regular.ttf') format('truetype');
}
* {
    box-sizing:border-box;
}

body {
    background-color: #191919;
    overflow-x: hidden;
    margin-inline: auto;
    max-width: 600px;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DT Getai Grotesk Display', serif;
    color: #E3E3E3;
    margin: 0;
}
p, li, a, span {
    font-family: 'Lexend Regular', sans-serif;
    color: #E3E3E3;
    margin: 0;
    font-size: 1.25rem;
    line-height: 2.25rem;
}
p {
    margin-top: 2.5rem;
}
h1 {
    font-size: 6rem;
    line-height: 0.9;
    letter-spacing: -6%;
    text-align: center;
}
h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -4%;
    margin-top: 4rem;
}
h1.blog-article-title {
    font-size: 5rem;
    line-height: 1.0;
    text-align: left;
    margin-top: 4rem;
}
a {
    text-decoration: none;
}

/* Blog title */
.blog-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 5rem;
    margin-bottom: 4rem;
}
.blog-title p {
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;
    max-width: 440px;
}

/* Blog content */
.blog-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.blog-post {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid #303030;
    border-radius: 999px;
    align-items: center;
    background: #1D1D1D;
    background: linear-gradient(0deg, rgba(29, 29, 29, 1) 0%, rgba(19, 19, 19, 1) 100%);
}
.blog-post-title {
    margin-top: 0;
    flex-grow: 1;
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-decoration: none;
}