@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    font-family: 'Funnel Sans';
}

.display-font {
    font-family: 'Funnel Display';
}

.header-bg {
    background-image: linear-gradient(0deg, #00000000 40%, #000000CC 80%);
}

.logo {
    height: 30px;
}

.menu-x {
    color: white;
    font-size: 1.15em;
    font-weight: 600;
}

.menu-name {
    font-size: 1.05em;
    font-weight: 300;
}

.bg-blur {
    --bs-bg-opacity: .3 !important;
    backdrop-filter: blur(20px);
}

.hero {
    height: 85vh;
    background-image: url("/images/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    & p {
        background-image: linear-gradient(150deg, #FFFFFF 30%, #9A9A9A6A 90%);
        color: transparent;
        background-clip: text;

        & strong {
            font-family: 'Funnel Display';
        }
    }
}

.heading-padding {
    padding-top: 2.5em;
}

.x-title {
    font-family: 'Funnel Display';
    color: white;
    font-size: 1.1em;
    font-weight: 600;
}

.name-title {
    font-family: 'Funnel Display';
    font-size: 1em;
    font-weight: 300;
    opacity: .9;
}

.screenshot {
    position: relative;
    cursor: pointer;
    opacity: .9;
    filter: grayscale(40%);
    transition: all .2s ease-in-out;

    &:hover {
        z-index: 1;
        opacity: 1;
        filter: grayscale(0%);
        transform: scale(110%);
    }
}
