@font-face {
    font-family: Garet;
    src: url('./Garet-Book.ttf');
}

@font-face {
    font-family: Bukhari;
    src: url('./Bukhari-Script.ttf');
}

html {
    width: 100vw;
    height: 100vh;
    position: fixed;
    overscroll-behavior: none;
}

body {
    font-family: 'Garet';
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overscroll-behavior: none;
}

.background {
    height: 100%;
    width: 100%;
    background-image: url('./background.webp');
    background-size: cover;
    background-position: center;
}

#overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    mask-image: radial-gradient(circle at var(--torch-x) var(--torch-y), transparent 6em, black 10em);
}

.scale {
    transform: scale(50);
    transition: transform 2s;
}

.title {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.title > h1 {
    font-family: 'Bukhari';
    font-size: 6.25em;
    color: #E9B07E;
    text-align: center;
    margin: 0;
    text-shadow: rgba(200, 140, 80, 1) 0.025em 0.025em 0px, rgba(160, 100, 40, 1) 0.05em 0.05em 0px, rgba(0, 0, 0, 1) 0.075em 0.075em 0px;
}

#subtitle {
    position: fixed;
    color: white;
    left: 50%;
    bottom: 7vh;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

#subtitle > h2 {
    font-size: 3.75em;
    color: white;
    text-align: center;
    margin: 0;
}

#subtitle > h3 {
    font-size: 2em;
    color: white;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 9px;
    }

    .title > h1 {
        text-shadow: rgba(200, 140, 80, 1) 0.025em 0.025em 0px, rgba(0, 0, 0, 1) 0.05em 0.05em 0px;
    }
}
