.door-page {
    height: 100vh;
    background: #000;
    background-image: url("/images/doorbg2.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}
.door-container {
    text-align: center;
    position: relative;
}
.door-frame {
    width: 220px;
    height: 380px;
    background: #333;
    padding: 12px;
    box-shadow:
    inset 4px 4px #888,
    inset -4px -4px #111;
}
.door-panel {
    height: 100%;
    background: #654321;
    position: relative;
    box-shadow:
    inset 5px 5px rgba(255,255,255,.2),
    inset -5px -5px rgba(0,0,0,.5);
}
.knob {
    position: absolute;
    right: 35px;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow: 
    inset 3px 3px white, 
    inset -3px -3px #555;
}
.door-text {
    margin-top: 25px;
    background: white;
    padding: 8px;
    display: inline-block;
    border: 3px solid black;
}
.door-subtext {
    font-size: 12px;
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}