﻿/* Container holding the image and the text */
.image-container {
    position: relative;
    text-align: center;
    color: white;
}

/* Bottom left text */
.imagetext-bottom-left {
    position: absolute;
    bottom: 18px;
    left: 18px;
}

/* Top left text */
.imagetext-top-left {
    position: absolute;
    top: 18px;
    left: 18px;
}

/* Top right text */
.imagetext-top-right {
    position: absolute;
    top: 18px;
    right: 18px;
}

/* Bottom right text */
.imagetext-bottom-right {
    position: absolute;
    bottom: 30px;
    right: 18px;
}

/* Centered text */
.imagetext-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
