@media screen and (min-width: 1025px){
html{
    background-color: #fafafa;
}

#sitesTitle {
    color: #2c3e50; 
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); 
    padding-top: 0px;
    font-family: "Bruno Ace SC"; 
    font-weight: 400; 
    display: block; 
    text-align: center;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    line-height: 1.5;
    font-size: 3rem;
    width: 100%;
    max-width: 2500px; 
    margin: 0 auto; 
    padding-top: 70px; 
}

/* Add the line directly below the title */
#sitesTitle::after {
    content: '';
    display: block; /* Ensures it is a block element */
    width: 100%; /* Full width of the parent container */
    height: 2px;
    background-color: #bdc3c7; /* Light gray color for an elegant finish */
    margin: 20px auto 0; /* Centers the line below the title with spacing */
}

.name-site{
    color: #2c3e50;
}

#siteSearch{
    border: solid 1px #8E735B;
    outline: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1000;
}

#siteSearch:hover{
    box-shadow: 0 5px 20px 5px #8E735B;
}

#siteSearch:focus{
    border: solid thick #8E735B;
}

.sites{
    width: 65%;
    float: left;
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 35px;
    padding-bottom: 50px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    position: static;
}

.site {
    background-color: #ffffff; /* Light background for the content */
    padding: 20px; /* Padding inside for spacing */
    margin-bottom: 20px; /* Spacing between site containers */
    border: 4px solid #8E735B; /* Oak brown color for the outer border */
    border-radius: 8px; /* Slightly rounded corners for elegance */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15), /* Light shadow for depth */
        0 0 0 2px #C7A17A; /* Inner glow for the "frame" effect (lighter wood tone) */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    position: relative; 
}

.site:hover {
    transform: translateY(-5px); /* Slight lift for the "3D" effect */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2), /* Stronger shadow for depth on hover */
        0 0 0 3px #D2B79D; /* Slightly stronger inner glow for a "finer" frame effect */
}

.site::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    left: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    right: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site {
    background-color: #ffffff; /* Light background for the content */
    padding: 20px; /* Padding inside for spacing */
    margin-bottom: 20px; /* Spacing between site containers */
    border: 4px solid #8E735B; /* Oak brown color for the outer border */
    border-radius: 8px; /* Slightly rounded corners for elegance */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15), /* Light shadow for depth */
        0 0 0 2px #C7A17A; /* Inner glow for the "frame" effect (lighter wood tone) */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    position: relative; /* Ensure pseudo-elements are positioned relative to the parent */
}

.site:hover {
    transform: translateY(-5px); /* Slight lift for the "3D" effect */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2), /* Stronger shadow for depth on hover */
        0 0 0 3px #D2B79D; /* Slightly stronger inner glow for a "finer" frame effect */
}

.site::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    left: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    right: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 350px;
    right: 0;
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}

figcaption{
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding-right: 90px;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 40px;
    width: 270px;
    font-size: 0.9em;
    position: static !important;
}

.map{
    z-index: 0;
    width: 80%;
    height: 350px;
    padding-top: 20px;
    padding-left: 5px;
    padding-bottom: 20px;
    padding-right: 30px;
    margin-top: 0;
    border: none;
    flex-shrink: 0;
    right: 0;
    object-fit: cover;
    margin-right: 0;
}

.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 120px;
}
}

@media screen and (min-width: 901px) and (max-width: 1024px){
    html{
    background-color: #fafafa;
}

#sitesTitle {
    color: #2c3e50; /* Dark, sophisticated color */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); /* Slightly deeper shadow for elegance */
    padding-top: 70px;
    font-family: "Bruno Ace SC"; /* Keep the same font */
    font-weight: 400; /* Slightly lighter weight for elegance */
    display: block; /* Ensure the title is treated as a block element */
    text-align: center;
    text-transform: uppercase; /* Uppercase adds a sense of sophistication */
    letter-spacing: 1px; /* Slightly tighter letter spacing for a clean, refined look */
    line-height: 1.5;
    font-size: 3rem; /* Larger font size for prominence without overwhelming */
    width: 100%;
    max-width: 1000px; /* Limit width to keep it elegant and centered */
    margin: 0 auto; /* Centers the title on the page */
    padding-bottom: 20px; /* Adds space for balance */
}

/* Add the line directly below the title */
#sitesTitle::after {
    content: '';
    display: block; /* Ensures it is a block element */
    width: 100%; /* Full width of the parent container */
    height: 2px;
    background-color: #bdc3c7; /* Light gray color for an elegant finish */
    margin: 20px auto 0; /* Centers the line below the title with spacing */
}

.name-site{
    color: #2c3e50;
}

#siteSearch{
    border: solid 1px #8E735B;
    outline: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1000;
}

#siteSearch:hover{
    box-shadow: 0 5px 20px 5px #8E735B;
}

#siteSearch:focus{
    border: solid thick #8E735B;
}

.sites{
    width: 55%;
    float: left;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 35px;
    padding-bottom: 50px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    position: static;
}

.site {
    background-color: #ffffff; /* Light background for the content */
    padding: 20px; /* Padding inside for spacing */
    margin-bottom: 20px; /* Spacing between site containers */
    border: 4px solid #8E735B; /* Oak brown color for the outer border */
    border-radius: 8px; /* Slightly rounded corners for elegance */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15), /* Light shadow for depth */
        0 0 0 2px #C7A17A; /* Inner glow for the "frame" effect (lighter wood tone) */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    position: relative; 
}

.site:hover {
    transform: translateY(-5px); /* Slight lift for the "3D" effect */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2), /* Stronger shadow for depth on hover */
        0 0 0 3px #D2B79D; /* Slightly stronger inner glow for a "finer" frame effect */
}

.site::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    left: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    right: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site {
    background-color: #ffffff; /* Light background for the content */
    padding: 20px; /* Padding inside for spacing */
    margin-bottom: 20px; /* Spacing between site containers */
    border: 4px solid #8E735B; /* Oak brown color for the outer border */
    border-radius: 8px; /* Slightly rounded corners for elegance */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15), /* Light shadow for depth */
        0 0 0 2px #C7A17A; /* Inner glow for the "frame" effect (lighter wood tone) */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    position: relative; /* Ensure pseudo-elements are positioned relative to the parent */
}

.site:hover {
    transform: translateY(-5px); /* Slight lift for the "3D" effect */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2), /* Stronger shadow for depth on hover */
        0 0 0 3px #D2B79D; /* Slightly stronger inner glow for a "finer" frame effect */
}

.site::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    left: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    right: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 280px;
    right: 0;
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}

figcaption{
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding-right: 90px;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 40px;
    width: 270px;
    font-size: 0.9em;
    position: static !important;
}

.map{
    z-index: 0;
    width: 80%;
    height: 350px;
    padding-top: 20px;
    padding-left: 5px;
    padding-bottom: 20px;
    padding-right: 30px;
    margin-top: 0;
    border: none;
    flex-shrink: 0;
    right: 0;
    object-fit: cover;
    margin-right: 0;
}

.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 100px;
}
}

@media screen and (min-width: 769px) and (max-width: 900px){
    html{
    background-color: #fafafa;
}

#sitesTitle {
    color: #2c3e50; /* Dark, sophisticated color */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); /* Slightly deeper shadow for elegance */
    padding-top: 70px;
    font-family: "Bruno Ace SC"; /* Keep the same font */
    font-weight: 400; /* Slightly lighter weight for elegance */
    display: block; /* Ensure the title is treated as a block element */
    text-align: center;
    text-transform: uppercase; /* Uppercase adds a sense of sophistication */
    letter-spacing: 1px; /* Slightly tighter letter spacing for a clean, refined look */
    line-height: 1.5;
    font-size: 2.5rem; /* Larger font size for prominence without overwhelming */
    width: 100%;
    max-width: 1000px; /* Limit width to keep it elegant and centered */
    margin: 0 auto; /* Centers the title on the page */
}

/* Add the line directly below the title */
#sitesTitle::after {
    content: '';
    display: block; /* Ensures it is a block element */
    width: 100%; /* Full width of the parent container */
    height: 2px;
    background-color: #bdc3c7; /* Light gray color for an elegant finish */
    margin: 20px auto 0; /* Centers the line below the title with spacing */
}

.name-site{
    color: #2c3e50;
}

#siteSearch{
    border: solid 1px #8E735B;
    outline: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1000;
}

#siteSearch:hover{
    box-shadow: 0 5px 20px 5px #8E735B;
}

#siteSearch:focus{
    border: solid thick #8E735B;
}

.sites{
    width: 55%;
    float: left;
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 35px;
    padding-bottom: 50px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    position: static;
}

.site {
    background-color: #ffffff; /* Light background for the content */
    padding: 20px; /* Padding inside for spacing */
    margin-bottom: 20px; /* Spacing between site containers */
    border: 4px solid #8E735B; /* Oak brown color for the outer border */
    border-radius: 8px; /* Slightly rounded corners for elegance */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15), /* Light shadow for depth */
        0 0 0 2px #C7A17A; /* Inner glow for the "frame" effect (lighter wood tone) */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    position: relative; 
}

.site:hover {
    transform: translateY(-5px); /* Slight lift for the "3D" effect */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2), /* Stronger shadow for depth on hover */
        0 0 0 3px #D2B79D; /* Slightly stronger inner glow for a "finer" frame effect */
}

.site::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    left: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    right: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site {
    background-color: #ffffff; /* Light background for the content */
    padding: 20px; /* Padding inside for spacing */
    margin-bottom: 20px; /* Spacing between site containers */
    border: 4px solid #8E735B; /* Oak brown color for the outer border */
    border-radius: 8px; /* Slightly rounded corners for elegance */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15), /* Light shadow for depth */
        0 0 0 2px #C7A17A; /* Inner glow for the "frame" effect (lighter wood tone) */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    position: relative; /* Ensure pseudo-elements are positioned relative to the parent */
}

.site:hover {
    transform: translateY(-5px); /* Slight lift for the "3D" effect */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2), /* Stronger shadow for depth on hover */
        0 0 0 3px #D2B79D; /* Slightly stronger inner glow for a "finer" frame effect */
}

.site::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    left: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    right: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.image{
    z-index: 50;
    flex-shrink: 0;
    width: 60%;
    height: 250px;
    right: 0;
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}

figcaption{
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding-right: 90px;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 40px;
    width: 270px;
    font-size: 0.9em;
    position: static !important;
}

.map{
    z-index: 0;
    width: 80%;
    height: 350px;
    padding-top: 20px;
    padding-left: 5px;
    padding-bottom: 20px;
    padding-right: 30px;
    margin-top: 0;
    border: none;
    flex-shrink: 0;
    right: 0;
    object-fit: cover;
    margin-right: 0;
}

.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 120px;
}
}

@media screen and (min-width: 481px) and (max-width: 768px){
    html{
    background-color: #fafafa;
}

#sitesTitle {
    color: #2c3e50; /* Dark, sophisticated color */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); /* Slightly deeper shadow for elegance */
    padding-top: 0px;
    font-family: "Bruno Ace SC"; /* Keep the same font */
    font-weight: 400; /* Slightly lighter weight for elegance */
    display: block; /* Ensure the title is treated as a block element */
    text-align: center;
    text-transform: uppercase; /* Uppercase adds a sense of sophistication */
    letter-spacing: 1px; /* Slightly tighter letter spacing for a clean, refined look */
    line-height: 1.5;
    font-size: 2rem; /* Larger font size for prominence without overwhelming */
    width: 100%;
    max-width: 1000px; /* Limit width to keep it elegant and centered */
    margin: 0 auto; /* Centers the title on the page */
    padding-bottom: 20px; /* Adds space for balance */
}

/* Add the line directly below the title */
#sitesTitle::after {
    content: '';
    display: block; /* Ensures it is a block element */
    width: 100%; /* Full width of the parent container */
    height: 2px;
    background-color: #bdc3c7; /* Light gray color for an elegant finish */
    margin: 20px auto 0; /* Centers the line below the title with spacing */
}

.name-site{
    color: #2c3e50;
}

#siteSearch{
    border: solid 1px #8E735B;
    outline: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1000;
}

#siteSearch:hover{
    box-shadow: 0 5px 20px 5px #8E735B;
}

#siteSearch:focus{
    border: solid thick #8E735B;
}

.sites{
    width: 50%;
    float: left;
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 35px;
    padding-bottom: 50px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    position: static;
}

.site {
    background-color: #ffffff; /* Light background for the content */
    padding: 20px; /* Padding inside for spacing */
    margin-bottom: 20px; /* Spacing between site containers */
    border: 4px solid #8E735B; /* Oak brown color for the outer border */
    border-radius: 8px; /* Slightly rounded corners for elegance */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15), /* Light shadow for depth */
        0 0 0 2px #C7A17A; /* Inner glow for the "frame" effect (lighter wood tone) */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    position: relative; 
}

.site p, .site ol{
    font-size: 0.9em;
}

.site:hover {
    transform: translateY(-5px); /* Slight lift for the "3D" effect */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2), /* Stronger shadow for depth on hover */
        0 0 0 3px #D2B79D; /* Slightly stronger inner glow for a "finer" frame effect */
}

.site::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    left: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    right: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.image{
    z-index: 50;
    flex-shrink: 0;
    width: 30%;
    height: 150px;
    right: 0;
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}

figcaption{
    text-align: center;
    margin: 0 auto;
    width: 10%;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 40px;
    width: 50px;
    font-size: 0.5em;
    position: static !important;
}

.map{
    z-index: 0;
    width: 40%;
    height: 350px;
    padding-top: 20px;
    padding-left: 5px;
    padding-bottom: 20px;
    padding-right: 30px;
    margin-top: 0;
    border: none;
    flex-shrink: 0;
    right: 0;
    object-fit: cover;
    margin-right: 0;
}

.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 270px;
}
}

@media screen and (max-width: 480px){
    html{
    background-color: #fafafa;
}


/*body {
  touch-action: pan-y;
  overscroll-behavior-x: none;
}*/

#sitesTitle {
    color: #2c3e50; /* Dark, sophisticated color */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); /* Slightly deeper shadow for elegance */
    padding-top: 70px;
    font-family: "Bruno Ace SC"; /* Keep the same font */
    font-weight: 400; /* Slightly lighter weight for elegance */
    display: block; /* Ensure the title is treated as a block element */
    text-align: center;
    text-transform: uppercase; /* Uppercase adds a sense of sophistication */
    letter-spacing: 1px; /* Slightly tighter letter spacing for a clean, refined look */
    line-height: 1.5;
    font-size: 1.5rem; /* Larger font size for prominence without overwhelming */
    width: 60%;
    max-width: 1000px; /* Limit width to keep it elegant and centered */
    margin: 0 auto; /* Centers the title on the page */
    padding-bottom: 0px; /* Adds space for balance */
}

/* Add the line directly below the title */
#sitesTitle::after {
    content: '';
    display: block; /* Ensures it is a block element */
    width: 100%; /* Full width of the parent container */
    height: 2px;
    background-color: #bdc3c7; /* Light gray color for an elegant finish */
    margin: 20px auto 0; /* Centers the line below the title with spacing */
}

.name-site{
    color: #2c3e50;
}

#siteSearch{
    border: solid 1px #8E735B;
    outline: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1000;
    width: 90%;
}

#siteSearch:hover{
    box-shadow: 0 5px 20px 5px #8E735B;
}

#siteSearch:focus{
    border: solid thick #8E735B;
}

.sites{
    width: 80vw;
    padding-top: 30px;
    margin: 0 auto;
    position: static;
}

.site {
    background-color: #ffffff; /* Light background for the content */
    padding: 20px; /* Padding inside for spacing */
    margin-bottom: 20px; /* Spacing between site containers */
    border: 4px solid #8E735B; /* Oak brown color for the outer border */
    border-radius: 8px; /* Slightly rounded corners for elegance */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15), /* Light shadow for depth */
        0 0 0 2px #C7A17A; /* Inner glow for the "frame" effect (lighter wood tone) */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    position: relative; 
}

.site p, .site ol{
    font-size: 0.75em;
}

.site:hover {
    transform: translateY(-5px); /* Slight lift for the "3D" effect */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2), /* Stronger shadow for depth on hover */
        0 0 0 3px #D2B79D; /* Slightly stronger inner glow for a "finer" frame effect */
}

.site::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    left: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}

.site::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #8E735B;
    top: -12px;
    right: -12px;
    transform: rotate(45deg); /* Angle for the corner box */
}


.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 180px;
    margin: 0 auto;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}

figcaption{
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 40px;
    font-size: 0.9em;
    position: static !important;
}

.map{
    z-index: 0;
    width: 80dvw;
    height: 220px;
    margin: 0 auto 30px 30px;
    border: none;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

.images{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column-reverse;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 50px;
    width: 80vw;
}

}

