#globe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* The following are the CSS styles for the modal. */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    width: 50%;
    text-align: center; /* Center the text in the modal */
    border-radius: 25px;
    max-height: 50vh;
    overflow-y: auto;
}

.Title {
    font-size: 30px;
    font-weight: bold;
    color: rgba(14, 28, 87);
    font-family: "Monaco", monospace;
    font-weight: normal;
}

.Description {
    font-size: 20px;
    color: rgba(92, 92, 92);
    font-family: "Optima", sans-serif;
    font-weight: lighter;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
    position: relative;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}
