.panel {
    background-image: url('/images/UnderConstruction.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 7% 35% 13% 35%; /* Adjust percentage based on your image's safe area */
    box-sizing: border-box;
}

.panel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 2em;
    height: 100%;
    width: 100%;
}

.panel-content h1,
.panel-content p {
    margin: 0;
    padding: 0;
    text-shadow: 0 0 5px var(--accent-color);
}

#button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}