html {
    scroll-behavior: smooth;
}
body {
    background: black;
    color: white;
}

.glass-block {
    background: #ffffff1a;
    border-radius: 16px;
    box-shadow: 0 4px 30px #0000001a;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255,255,255,.3);
}

.link, .article a {
    color: #9abee8
}
.link:hover, .article a:hover {
    text-decoration: underline;
}

.image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    border-radius: 1rem;
}

.article img {
    max-height: 400px;
    margin: 1rem auto;
    border-radius: .5rem;
}
.article h1 {
    font-size: 3rem;
}
.article h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.article p {
    margin-bottom: .5rem;
}