* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow: hidden;
}

.background {
    background-image: url('under_construction.png');
    background-size: cover; /* Ensures the image fully covers the viewport */
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #b19cd9;
    font-family: Arial, sans-serif;
}

h1 {
    font-size: 3em;
    color: #b19cd9;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 10px;
}
