﻿/* Container holding the image and the text */
.container {
    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%);
}


.fontAnton{
    font-family: 'Anton', cursive;
    font-size: 25px;
    color: white;

    padding: 10px;
}

.fontAnton12 {
    font-family: 'Anton', cursive;
    font-size: 15px;
    color: black;
    padding: 10px;
}

.imgOpacity {
    border: 5px dotted black;
    padding: 25px;
    background: gray;
    background-clip: padding-box;
    opacity: 0.8;
    filter: alpha(opacity=50); /* For IE8 and earlier */
}

