* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}
.bg-container {
    background-image: url('/img/constructionDm.png');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-container {
    color: white;
    font-size: 2em;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
@media (max-width: 768px) {
    .text-container {
        font-size: 1.5em;
    }
}
@media (max-width: 480px) {
    .text-container {
        font-size: 1em;
        padding: 10px;
    }
}