﻿@font-face {
    font-family: "ICPangeaText";
    src: url('/Content/Fonts/ICPangeaText-RegularWeb.woff2') format('woff2'), url('/Content/Fonts/ICPangeaText-Regular.ttf') format('truetype');
}

body, a {
    font-family: "ICPangeaText";
    color: black;
}

body, h1, h2, h3, p {
    margin: 0;
}

.poratlContainer{
    display:block;
}

.successScreen, .failedScreen {
    display: none;
    height: calc(100vh - 93px);
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.successContainer , 
.failedContainer {
    display: flex;
    gap: 32px;
    flex-direction: column;
    align-items: center;
}

.hSection {
    text-align: center;
    margin-bottom: 2rem;
}

.xxlText {
    font-size: 40px;
    font-weight: 400;
}

.xlText {
    font-size: 24px;
}

.lgText {
    font-size: 20px;
}

.mdText {
    font-size: 18px;
}

.smText {
    font-size: 14px;
}

.semiBold {
    font-weight: 600;
}

header {
    background-color: #D9D9FB;
    height: 93px;
    background-repeat: repeat;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.footer {
    width: 100%;
    height: 90px;
    background-color: #D9D9FB;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

@media screen and (max-width:768px) {
    .xxlText {
        font-size: 24px;
    }

    .xlText {
        font-size: 20px;
    }

    .mdText {
        font-size: 16px;
    }

    header {      
        padding: 0 24px;
    }

        header img {
            max-width: 120px;
        }

    .hSection {
        text-align: right;
    }

    .footer {
        width: calc(100% - 64px);
        flex-direction: column-reverse;
        gap: 16px;
        padding: 32px;
        height: unset;
        justify-content: unset;
        align-items: unset;
    }
}
