@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@font-face {
    font-family: "Engine";
    src: url("/font/ENGINE_Full_Version.otf");
}

html {
    background-color: #101010;
    height: 100%;
}

body {
    margin: 0;
    height: 100%;
    background-image: url('/img/logo-2026.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Helvetica, Arial, sans-serif;
}

.pane {
    background-color: #f2f2f891;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: max-content;
    text-align: center;
    padding: 60px 100px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 250px;
    box-shadow: 0px 10px 20px rgb(37 37 37 / 34%);
}

h1 {
    margin-top: 0;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    color: #9D072C;
    font-size: 50px;
}

h2 {
    font-family: 'Josefin Sans', sans-serif;
    color: #151829;
}

.res {
    display: inline-flex;
}

.res img, a {
    margin-top: auto;
    margin-bottom: auto;
}

@media screen and (max-width: 768px) {
    .pane {
        padding: 40px 50px;
    }
}

@media screen and (max-width: 500px){
    .pane {
        padding: 20px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 20px;
    }
}