body {
    margin: 0;
    font-family: monospace;
    background-color: #031300;
    background-image: url(https://i.ibb.co/tMQQJ1L1/PIP-BOY-3000-Rob-Co-Industries-2.png);
    background-size: cover;
    height: 100vh;
    overflow: hidden;
    color: #00ff00;
    text-shadow: 0 0 3px #00ff00
}



.topBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 6px 12px;
    background-color: rgba(28, 169, 0, 0.45);
    border-bottom: 2px solid #00ff00;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}


.window {
    position: absolute;
    width: 600px;
    min-height: 300px;
    background-color: #014900;
    border: 2px solid #00ff00;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    display: none;
}


.windowheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #008000;
    border-bottom: 2px solid #00ff00;
    cursor: move;
    user-select: none;
}


.windowContent {
    padding: 16px;
}


.closebutton {
    cursor: pointer;
    padding: 2px 8px;
}

.closebutton:hover {
    background-color: #00ff00;
    color: #031300;
}

.icon {
    text-align: center;
}

.icon img {
        box-shadow: 0 0 10px #005D00 ;
}

#notesIcon {
    position: absolute;
    top: 120px;
    left: 40px;
    text-align: center;
    cursor: pointer;
}

#notesIcon img {
    display: block;
    margin: 0 auto;
}

.mapContainer {
    width: 94.5%;
    height: 400px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.mapContainer:active {
    cursor: grabbing;
}

#mapImage {
    position: absolute;
    top: 0;
    left: 0;
    user-select: none;
    pointer-events: none;
    width: 900px;
    transform-origin: top left;
}

body, .mapContainer {
    user-select: none;
}

#lockWindow {
    width: 500px;
    height: 400px;
}


#lock {
    position: absolute;
    width: 220px;
    left: 140px;
    top: 40px;
}

#pin {
    position: absolute;
    width: 180px;
    left: 90px;
    top: 135px;

    transform-origin: 90% 50%;
}

#lockGame {
    position: relative;
    width: 100%;
    height: 300px;
}

#screwdriver {
    position: absolute;
    width: 220px;
    left: 100px;
    top: 10px;
    transform-origin: center center;
}

#pinHealth {
    position: absolute;
    left: 10px;
    bottom: 5px;
    font-size: 20px;
}

#unlockText {
    position: absolute;
    top: 120px;
    width: 100%;
    text-align: center;
    font-size: 36px;
    color: #00ff00;
    display: none;
    text-shadow: 0 0 12px #00ff00;
}

#welcome {
    width: 615px;
}

#welcomeImage {
    display: block;
    width: 600px;
    height: auto;
    margin: 15px auto;
}

@keyframes pinShake {

    0% { transform: translateX(0); }

    20% { transform: translateX(-5px); }

    40% { transform: translateX(5px); }

    60% { transform: translateX(-5px); }

    80% { transform: translateX(5px); }

    100% { transform: translateX(0); }

}

#radioWindow {
    width: 500px;
    height: 450px;
}