body {
    font-family: 'Roboto';
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;  
    overflow-x: hidden;
    background: #171717;
    margin-top: 5vh;
    max-width: 100vw;
}

         /*---Main Content---*/
/*-------------------------------------*/

.slideshow-container {
    position: relative;
}

#slideshow {
    display: flex;
    overflow: hidden;
}

.slideshow-img {
    flex: 0 0 100%;
}

.slideshow-img img {
    object-fit: cover;
    max-height: 100%;
}

.slideshow-search {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -150%);
}

.slideshow-search .search-bar {
    display: flex;
    flex-direction: column;
    min-width: 60vw;
    height: 50%;
    max-height: 40px;
}

.slideshow-container .slogan {
    font-size: 28px;
    text-shadow: 1px 1px 32px #00000080;
    text-align: center;
}

.slideshow-container input[type=text] {
  padding: 6px;
  border-radius: 24px 0 0 24px;
  border: none;
  font-size: 12px;
  background: white;
  color: black;
  min-width: 60vw;
}

.slideshow-container input[type=text]:focus {
    outline: none;
}

.slideshow-container .search-bar .input {
    display: flex;
}

.slideshow-container .search-button-slideshow {
  background: white;
  border: none;
  border-radius: 0 24px 24px 0;
  min-width: 40px;
  cursor: pointer;
}

.slideshow-nav {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-top: 0.5vh;
    margin-bottom: 0.5vh;
    opacity: 0.7;
}

.slideshow-nav button {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
    max-width: 4vh;
}

.slideshow-nav button:hover{
    opacity: 0.7;
}

#below-slideshow {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-left: 6vw;
    margin-right: 6vw;
}

.random-spot {
    display: none;
}

.random-spot button {
    margin-top: 1rem;
    background: #25272C;
    padding: 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    align-items: center;
    cursor: pointer;
    border: 2px solid #ffffff80;
    color: white;
}

.site-info {
    display: flex;
    justify-content: center;
    background: #202020;
    padding: 2vw 0 2vw 0;
    color: white;
    width: 100vw;
    text-align: center;
    opacity: 0.8;
}

.about-text {
    width: 70%;
}

.kofi-link a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-three-locations {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    color: white;
    padding: 4vh 0 4vh 0;
}

.card-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    gap: 2vh;
}

.location-card a{
    display: flex;
    flex-direction: column-reverse;
    background: #25272C;
    width: 175px;
    height: 350px;
    font-size: 0.8rem;
    transition: transform 0.5s ease;
    border-radius: 16px;
    justify-content: flex-end;
}

.location-card a:hover {
    transform: scale(1.07);
    opacity: 1;
}

.info-side {
    color: #c0c0c0;
    padding-left: 12px;
}

.result-title {
    font-size: 0.9rem;
    color: #15b476;
}

.location-card h4 {
    margin-top: 15px;
}

.image-side{
    max-height: 175px;
    overflow: hidden;
    border-radius: 16px 16px 0 0 !important;
}

.image-side img {
    min-height: 175px;
}

.line-map {
    max-width: 80vw;
}

.line-map h2 {
    font-size: 3vw;
    width: 100%;
}

.map-top-three {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem;
}

/*-------------------------------------*/


            /*---Misc---*/
/*-------------------------------------*/

a{
    text-decoration:none;  
  }

a:hover {
    opacity: .75;
}

#rotate-180 {
    transform: rotate(180deg);
}

.header-invisible {
    display: none;
}
