@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
root {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background: white;
    font-family: "Poppins", serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

/* ======================== Header ========================================= */
.header {
    height: 15vh;
    display: flex;
    width: 100%;
}

.headerBox {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    justify-items: center;
    align-items: center;
    margin-left: 50px;
    margin-top: 10px;
}

.logo {
    height: 8vh;
    width: 7vw;
}

.top{
    display: none;
}

.header1 {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.header2 {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    font-weight: 400;
}

.left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


/* ================================== Main ========================================= */
.main {
    display: flex;
    height: 75vh;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    position: relative;
}

.mainHeader {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #1E1B1E;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    position: relative;
    margin-top: 30px;
}

.bigText1 {
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    padding-top: 8vh;
    color: #505050
}

.bigText2 {
    font-size: 120px;
    line-height: 120px;
    text-align: center;
    font-weight: 400;
    color: #505050;
}

.centerText {
    display: inline-flex;
    align-items: center;
    justify-items: center;
}

.centerImage {
    position: absolute;
    z-index: -1;
    height: 60vh;
}

.box {
    height: 12vh;
}

/* ============================== Footer ================================== */

.footer {
    display: flex;
    justify-items: end;
    padding-top: 15px;
    flex-direction: column;
    gap: 1px;
    height: 10vh;
    margin-top: auto;
}

.copyright {
    color: #858585;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
}

.footerText {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    color: #505050;
    white-space: normal;
    /* Allows wrapping of text */
    word-wrap: break-word;
    /* Breaks words if they are too long */
    overflow-wrap: break-word;
}




/* ============================ bottom ========================== */
.bottom {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1em;
    /* Using em for relative spacing */
    align-items: center;
    justify-items: center;
    right: 0;
    bottom: 0;
    padding-right: 2vw;
    /* vw for padding */
    padding-bottom: 5vh;
    /* vh for padding */
}

.bottomText {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
    color: #505050;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 400;
}

.bottomImage {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    height: 50vh;
    width: 20vw;
}

.bottom2 {
    display: none;
}

.qr {
    height: 8vw;
    /* Width/Height in vw to scale with screen size */
    width: 8vw;
}

@media (max-width: 800px) {
    body {
        padding: 10px;
        overflow: visible;
        height: auto;
    }

    .headerBox {
        display: block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 0;
    }

    .logo{
        height: 10vh;
        width: 6vh;
    }

    .left {
        display: none;
    }

    .main {
        margin-top: 10vh;
        height: 65vh;
        gap: -10px
    }
    .top{
        position: relative;
        display: block;
        width: 110%;
        top:-10px;
        z-index: -1;
        left: -10px;
    }

    .mainHeader {
        font-size: 17px;
        line-height: 22.5px;
        font-weight: 500;
        text-align: center;
        color: #1E1B1E;
    }

    .bigText1 {
        font-size: 20px;
        text-align: center;
        font-weight: 500;
        padding: auto 0;
        color: #505050
    }

    .bigText2 {
        font-size: 86px;
        line-height: 72.6px;
        text-align: center;
        font-weight: 400;
        color: #505050;
    }

    .centerImage {
        position: absolute;
        z-index: -1;
        height: 50vh;
    }

    /* =============bottom================== */

    .bottom {
        position: relative;
        display: flex;
        margin-top: 50px;
        flex-direction: row;
        justify-content: space-around;
        gap: .5em;
    }

    .qr {
        height: 12vw;
        width: 12vw;
        order: 2
    }

    .bottomText {
        display: flex;
        flex-direction: row;
        gap: 0.25em;
        color: #505050;
        font-size: .75rem;
        text-align: center;
        font-weight: 400;
    }

    .bottomImage {
        display: none;
    }

    /*======================= footer ============================*/
    .footer {
        margin-top: 50px;
    }

    .copyright {
        font-size: 7px;
        line-height: 10.5px;
    }

    .footerText {
        font-size: 15px;
        line-height: 22.5px;
    }

    .bottom2 {
        display: block;
        position: absolute;
        left: -15px;
        bottom: -15px;
        z-index: -1;
    }
}