h1 {
    margin: 0%;
    padding: 0%;
}

.button-container {
    /* Debug properties*/
    /* background-color: brown; */

    /* Actual Style*/
    position: relative;
    z-index: 100;
}

#annoying-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: #fff;
    border: 2px solid #000;
    box-shadow: 10px 10px 5px #888888;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

#popup-header {
    background-color: #000080; /* Navy blue like old windows */
    color: white;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

#popup-close {
    background-color: #c0c0c0;
    border: 1px outset white;
    cursor: pointer;
    font-weight: bold;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

#popup-content {
    padding: 20px;
    text-align: center;
    font-family: sans-serif;
    color: black;
}

#flag-button {
    

    z-index: 101;
    padding: 5%;

    white-space: nowrap;
    background-color: #2efa0a;

    border-style: ridge;
    border-width: 5px;
    border-color: gainsboro;

}