/* GLOBAL STYLE */
body {
    background-color: rgb(237, 242, 198);
}

.imageBoxStyle {
    display: flex;
    width: 300px; 
    height: 300px;
}

/* TITLES AND DESCRIPTIONS */
h1 {
    font-size: 3em;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    color: #000;
    margin-bottom: 0;
}

h2 {
    font-size: 1.2em;
    font-weight: 400;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    color: #000;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* BOX */
.box {
    display: inline-block; 
    width: 300px; 
    height: 300px; 
    border-radius: 15px;
    background-color: rgb(210, 210, 132);
}

/* MODALS */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0, 0, 0); 
    background-color: rgba(0, 0, 0, 0.8); 

    /* SCROLLBAR */
    scrollbar-width: thin;

    max-width: 100%;
    max-height: 100%;

}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 15px;

    text-align: center;

    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.2em;

    /* RESPONSIVE */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    max-width: 100%;
    max-height: 100%;

    overflow: auto;
}

.modal-noCorrectPassword {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    text-align: center;
    color: #000;

    margin-bottom: 0;  
    margin-top: 3;

    max-width: 100%;
    max-height: 100%;
}

.modal-image {
    width: 50%;
    height: 50%;

    margin-top: 1rem;

    border-radius: 15px;

    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    /* RESPONSIVE */
    max-width: 600px;
    max-height: 600px;  
}