﻿body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */

    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-image: linear-gradient(to top, #ffffff, #eef0fb, #d7e3f8, #b9d7f3, #96cdec, #7ac5eb, #57bdea, #14b5e8, #00acf1, #00a1f9, #0094fe, #0086ff);
}



.app-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2% 2% 2% 2%;
    box-sizing: border-box;
    gap: 10px;
}

.bannerBox {
    width: fit-content;
    height: fit-content;
    background-color: white;
    border-radius: 10px 40px;
    min-width: 100px;
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.bannerBox p {
    color: #006eae;
    /*font-size: 60px;*/
    font-family: SourceSans3-Black;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: auto;
    margin-bottom: auto;
    width: fit-content;
    height: fit-content;
    transition: opacity 2s;
}

.bannerBox .dot {
    display: inline-block;
    height: clamp(20px, 2vw, 35px);
    width: clamp(20px, 2vw, 35px);
    background-color: #aad200;
    border-radius: 50%;
}

.defaultButton {
    height: fit-content;
    min-width: 200px;
    background-color: #5a5a5a;
    border: none;
    color: white;
    text-decoration: none;
    margin: 4px 4px;
    cursor: pointer;
    border-radius: 40px;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.buttonSingle{
    min-width: 20%;
}


.flexSpacer {
    flex-grow: 1;
}

.pDefault {
    font-size: 20px;
    font-family: SourceSans3-Regular;
    color: white;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.pSizeExtraSmal {
    font-size: 20px;
}

.pSizeSmal {
    font-size: 30px;
}

.pSizeMedium {
    font-size: 35px;
}

.pSizeLarge {
    font-size: 40px;
}

.pSizeExtraLarge {
    font-size: 70px;
}

.pSizeBannerBox {
    font-size: 60px;
}

.pDefaultBold {
    font-family: SourceSans3-Black;
    color: #5a5a5a;
}

.pDefaultMedium {
    font-family: SourceSans3-Medium;
    color: #5a5a5a;
}

.pDefaultTitle {
    font-size: 32px;
    font-family: SourceSans3-Regular;
    color: white;
}

.pWhite {
    color: white;
}

.backgroundWswGreen {
    background-color: #aad200;
}

.backgroundWswGrey {
    background-color: #5a5a5a;
}

.hideOnStart {
    visibility: hidden;
}

.unselectable {
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
}

p {
    font-family: SourceSans3-Bold;
    font-size: 22px;
    color: white;
}







@media (max-width: 834px) {
    .app-container {
        padding: 5% 5% 5% 5%;
    }

    .bannerBox {
        width: 100%;
    }

    .bannerBox p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding-left: 5px;
        padding-right: 5px;
    }

    .defaultButton {
        min-width: 150px;
    }

    .pDefaultBold {
        /*font-size: 18px;*/
    }

    .pSizeMedium {
        font-size: 30px;
    }

    .pDefaultTitle {
        font-size: 26px;
    }

    .pSizeBannerBox {
        font-size: 32px;
    }

    .buttonSingle {
        width: 100%;
    }

}


@media (max-width: 390px) {
}




