@font-face { font-family: Iosevka; src: url(/static/fonts/Iosevka/IosevkaAile-Bold.ttc); } @font-face{ font-family: Iosevka_bold; src: url(/static/fonts/Iosevka/IosevkaAile-Heavy.ttc); }

body { margin: 0; padding: 0; padding-bottom: 120px; font-family: Iosevka; }
html { 
    scroll-behavior: smooth;
}
a { color: black; transition: all 500ms; -webkit-transition: all 500ms; -moz-transition: all 500ms; -o-transition: all 500ms; }
h1{
    font-weight: 80;
    font-size: 6rem;
    text-align: center;
}

.container{
    text-align: center;
    padding: 7rem 2rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 12px;
    margin-right: auto; margin-left: auto;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px 28px;

    max-width: 70vw;
    width: min(70vw, 520px);
}
ul { list-style-type: none; margin: 0; padding: 0; }
ul li a { 
    display: block;
    position: relative;
    padding: 10px 0 10px 22px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}
ul li a::before{
    content: "→";
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}
ul li a:hover { padding-left: 28px; }
ul li a:hover::before{ opacity: 0.5; }

footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 120px;
    color: white;
    background-color: #000000f6;
    z-index: 50;
}
footer p, footer a { color: #fff; font-size: 12px; white-space: pre; margin-top: 0; }
.signature {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 190px;
    max-width: 20vw;
    opacity: 0.95;
}
.signature:hover { opacity: 1; transform: scale(1.2);
    transition: all 500ms; -webkit-transition: all 500ms; -moz-transition: all 500ms; -o-transition: all 500ms; }

@media (max-width: 768px) {
    .container { padding-left: 0; padding-right: 0; }
    h1 { font-size: 4rem; }
    p, li { font-size: 1.8rem; }
    ul li a { font-size: 1.5rem; }
    body, html { overflow: scroll; }
}

@media (max-width: 480px) {
    h1 { font-size: 3rem; }
    p, li { font-size: 1.5rem; }
    ul li a { font-size: 1.2rem; }
    body, html { overflow: scroll; }
}