* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #992B21;
    box-shadow: inset 0 0 1280px rgba(0, 0, 0, 0.7);
    /*pointer-events: none;*/
    z-index: -1;
    /*Oorspronkelijke achtergrondafbeelding - vervangen door kleur owv traag laden*/
    /*inset doet de schaduw naar binnen vallen in plaats van naar buiten*/
    /*background: url('../resources/9.png') center / cover no-repeat fixed;*/
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* centreert verticaal */
    height: 100vh; /* 100% van de hoogte van de viewport*/
}

.wrapper img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
}

h1, .fire-title {
    font-family: "Oswald", sans-serif;
    font-size: 7rem;
    font-weight: 700;
    color: #FDF6E3;
    filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.3));
    margin-top: 2vw;
}

h1, .fire-title {
    white-space: nowrap;
    font-size: 6.5vw;
    margin-top: 2rem;
}


.nav-to-index, a.visited {
    display: inline-block;
    padding: 0.6rem 1rem;
    color: #FDF6E3;
    position: absolute;
    margin: 3rem 0 0 3rem;
    font-weight: 10;
    font-size: 1.1rem;
    text-decoration: none;
    background-color: #272727;
    border-radius: 8px;
    box-shadow: 10px 10px 50px 0 #ff770040; /*box-shadow: horizontaal  verticaal  vervaging  spread  kleur;*/
}

span, .popup-title {
    background: linear-gradient(to top, #ff6500, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-title {
    filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.7));
}

map area {
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.popup.visible {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    cursor: pointer;
}

.popup-card {
    position: relative;
    z-index: 2;
    background-color: #C0392B;
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0 2.5rem;
    background-color: #C0392B;
}

.popup-title {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    color: #FDF6E3;
    font-size: 2rem;
}

.popup-body{
    display: flex;
    align-items: flex-start;
    padding: 0 1rem 1rem 1rem;
}

.profile-picture {
    width: 200px;
    height: auto;
    flex-shrink: 0;
    margin: 1rem;
}
.description {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 1.1rem;
    color: #FDF6E3;
    text-align: left;
    line-height: 1.5;
    margin: 1rem 1rem 1rem 1.5rem;
    flex-shrink: 1;
}

.btn-close {
    background-color: #C0392B;
    border: none;
    color: #FDF6E3;
    cursor: pointer;
}