body {
    margin: 0;
    padding: 0;
    text-align: center;
}

@font-face{
    font-family: 'Sevillana';
    src: url('Sevillana-Regular.ttf') format('truetype');
}

.typ {
    font-family: Sevillana, sans-serif;
}

#map {
    height: 90vh;
    width: 100vw;
}

#gallery-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

#gallery-content img {
    max-width: 100%;
    width: 18.75rem;
    height: auto;
    border-radius: 0.5rem;
}

/* Toggle button styling */
.switch {
    position: relative;
    display: inline-block;
    width: 3.125rem;
    height: 1.5rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    transition: 0.4s;
    border-radius: 1.5rem;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.125rem;
    width: 1.125rem;
    left: 0.1875rem;
    bottom: 0.1875rem;
    background-color: black;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4caf50;
}

input:checked + .slider:before {
    transform: translateX(1.625rem);
}

#gallery-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    justify-content: center;
}

#gallery-overlay > div {
    position: relative;
    max-width: 46.875rem;
    margin: 3.75rem auto;
    padding: 1.25rem;
    background: transparent;
    border-radius: 0.5rem;
}

#close-gallery {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    background: red;
    color: white;
    border: none;
    padding: 0.3125rem 0.625rem;
    cursor: pointer;
    border-radius: 0.3125rem;
}
