@font-face {
    font-family: 'Unica';
    src: url('/font/unica/Unica77LL-Regular.woff') format('woff');    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Unica', sans-serif;
    background-color: #134799;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: crosshair;

    -webkit-font-smoothing:antialiased;
}

#sparkleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.container {
    /* text-align: center; */
    padding: 2rem 2rem 4rem 2rem;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

h1, h2, h3 {
    font-weight: normal;
    font-size: 1.1rem;
    line-height: 1.2;
    /* margin-bottom: 0.25rem; */
    letter-spacing: 0.01em;
    background-color: black;
    padding: 0.3rem 0.25rem 0.2rem 0.25rem;
} 

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 500px); /* Reserve space for text */
    object-fit: contain;
    margin: 2rem 0;
    flex: 1;
    /* filter: grayscale(1); */
    mix-blend-mode: screen;
}

img:hover{
    /* filter: grayscale(0); */
    /* mix-blend-mode: screen; */

}

a{
    color: unset;
}

a:visited{
    color: unset;
}

a:hover{
    text-decoration: none;
}

@media (max-width: 768px) {
    h1 {
        /* font-size: 2.3rem; */
    }

    .container {
        padding: 2rem 0.75rem 4rem 0.75rem;
    }
}