@font-face {
    font-family: 'segoeui';
    src: url('/assets/fonts/segoeui.woff') format('woff');
}

@font-face {
    font-family: 'segoeuibold';
    src: url('/assets/fonts/segoeuib.woff') format('woff');
}

@font-face {
    font-family: 'segoeuiit';
    src: url('/assets/fonts/segoeuii.woff') format('woff');
}

@font-face {
    font-family: 'segoeuil';
    src: url('/assets/fonts/segoeuil.woff') format('woff');
}

@font-face {
    font-family: 'seguibl';
    src: url('/assets/fonts/seguibl.woff') format('woff');
}
.segoeui {
    font-family: 'segoeui';
}

.segoeuibold {
    font-family: 'segoeuibold';
}

.segoeuiblack {
    font-family: 'seguibl';
}

.segoeuilight {
    font-family: 'segoeuil'
}

.segoeblack {
    font-family: 'segoeblack';
}

*{
    margin: 0;
    padding: 0;
}
body{
    font-family:"segoeui !important
    min-height: 100vh";
    background-image: url('/assets/images/Landing-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
header{
    display: flex;
    align-items: center;
    justify-content: center;
}
header img{
    width: 350px;
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 207.79px);
}
.qr-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}
.qr-code{
    text-align: center;
}
.qr-code img{
    width: 80%;
}
.download-edition{
    display: none;
}
.qr-container img{
    width: 250px;
}
@media(width < 768px){
    body {
        background-image: url(/assets/images/Landing-bg-MOB-bg.png);
        min-height: 100vh;
        overflow: hidden;
    }
    main {
        height: calc(100dvh - 207.79px);
        overflow: hidden;
    }
    header img{
        width: 280px;
    }
    .qr-container{
        display: none;
        flex-direction: column;
    }
    .qr-container img{
        width: 250px;
    }
    .download-edition img{
        width: 250px;
    }
    .download-edition{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .download-edition a{
        text-align: center
    }
}