﻿.container {
    position: relative;
    text-align: center;
    color: darkred;
}
.text {
    position: absolute; /* Positions the text relative to the container */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the text */
}
