﻿/* Container holding the image and the text */
.container1 {
    /* position: relative;
      text-align: center;*/
    color: white;
}

/* Bottom left text */
.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

/* Top left text */
.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

/* Top right text */
.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

/* Bottom right text */
.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

/* Centered text */
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slogan {
    font-size: 100px !important;
    font-family: "Segoe UI";
    margin-bottom: 0 !important;
}

.welcomeText {
    font-size: 40px !important;
    font-family: "Calibri light";
}


@media (max-width: 576px) {
    .slogan {
        font-size: 50px !important;
        font-family: "Segoe UI";
        margin-bottom: 0 !important;
    }

    .welcomeText {
        font-size: 20px !important;
        font-family: "Calibri light";
    }
}
@media (min-width: 768px) {
    .slogan {
        font-size: 60px !important;
        font-family: "Segoe UI";
        margin-bottom: 0 !important;
    }

    .welcomeText {
        font-size: 30px !important;
        font-family: "Calibri light";
    }
}

.multi-line {
    white-space: pre-wrap;
}
