body {
    background-image: url('test.png'); 
    background-repeat: repeat;                
    background-size: 500px; 
    margin: 0;
    padding: 0;
    font-family: "MS PGothic", "MS Gothic", "Courier New", monospace;
    font-size: 12px; 
}

#lock-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#padlock {
    width: 170px;
    margin-bottom: -20px;
}

.code-instructie {
    font-family: "Blackadder ITC", cursive; /* Gebruikt Blackadder als het beschikbaar is */
    font-size: 20px;
    color: #ab9570; /* Een zachte, bijna witte beige kleur */
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Subtiele schaduw voor leesbaarheid */
    letter-spacing: 1px;
}

.code-box {
    width: 35px;            /* Iets kleiner */
    height: 35px;           /* Iets kleiner */
    font-size: 20px;
    text-align: center;
    margin: 5px;
    
    /* Een zachte crèmekleur in plaats van fel wit */
    background: #e8e4d9;    
    
    /* Een subtiel bruin randje dat bij de achtergrond past */
    border: 1px solid #7d6b5d; 
    border-radius: 4px;     /* Iets zachtere hoekjes */
    color: #4a3f36;         /* Donkerbruine tekstkleur */
}

/* Om het wat 'chiquer' te maken als je erin klikt */
.code-box:focus {
    outline: none;
    border: 1px solid #c2b09c;
    background: #fcfaf5;
}

.key-button {
    width: 100px;           /* Pas dit aan naar hoe groot je hem wilt */
    margin-top: 20px;
    cursor: pointer;        /* Maakt van je muis een handje */
    transition: transform 0.3s ease; /* Zorgt voor de vloeiende animatie */
}

/* Het hover-effect: de sleutel wordt een klein beetje groter */
.key-button:hover {
    transform: scale(1.1);  /* Wordt 10% groter */
}

/* Zorgt dat de vlogs pas zichtbaar worden na het invoeren van de code */
#vlog-content {
    display: none; 
}

/* De container blijft hetzelfde voor de lay-out */
.polaroid-container {
    display: flex;
    justify-content: center; 
    gap: 40px;               
    padding: 80px 20px;      
}

/* Omdat de randen al in je PNG zitten, hoeven we hier alleen de breedte te regelen */
.polaroid-card {
    width: 180px;            /* Kies de gewenste breedte van je polaroid-afbeelding */
    transition: transform 0.3s ease;
}

.polaroid-card:hover {
    transform: scale(1.03) translateY(-5px);
}

/* De afbeelding neemt nu de volledige ruimte van de kaart in */
.polaroid-card img {
    width: 100%;
    display: block;          /* Voorkomt kleine witrandjes onder de foto */
}

/* De caption en link blijven hetzelfde */
.caption {
    font-family: "Courier New", monospace;
    text-align: center;
    margin-top: 15px;
    color: #7b6c60;
    font-size: 13px;
    font-weight: bold;
}

.watch-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    text-decoration: none;
    color: #ab9570;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: bold;
}
