#bg {
    background-image: url("../images/vaporwave-sunset.jpg");
    background-size: cover;
    background-position: center;
}


.hero {
    font-family: 'norwester', sans-serif;
    font-size: 6rem;
    padding: 0;
    margin: 0;
}

.hero h1 {
    background-image: url("../images/vapor-dark.jpg");
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: -5px -5px 0 rgba(0, 0, 0);
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    margin-bottom: 8rem;
}

.main-content h2 {
    font-size: 3rem;
    text-shadow: 4px 4px 0 black, 0 0 10px black, 0 0 20px black;
}



.image-container {
    height: 100%;
    position: relative;
    display: inline-block;
}
  
img.shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    filter: brightness(0.5) sepia(1) saturate(10000%) hue-rotate(300deg) blur(4px);
    opacity: 0.9;
    z-index: -1;
}




.image-collection {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-collection img::before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.5), 0 0 40px 20px rgba(255, 255, 255, 0.5);
    z-index: -1;
}

.image-collection img {
    content: "";
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.image-collection img:hover {
    scale: 1.1;
    z-index: 9999;
    text-shadow: 0 0 10px rgb(4, 247, 255), 0 0 20px rgb(4, 247, 255), 0 0 30px rgb(4, 247, 255), 0 0 40px rgb(4, 247, 255), 0 0 50px rgb(4, 247, 255), 0 0 60px rgb(4, 247, 255);
}

.image-collection img:nth-child(1) {
    top: 10%;
    left: 5%;
    transform: rotateZ(-30deg);
}

.image-collection img:nth-child(2) {
    top: 5%;
    left: 25%;
    transform: rotateZ(-20deg);
}

.image-collection img:nth-child(3) {
    transform: rotateZ(0deg);
}

.image-collection img:nth-child(4) {
    top: 5%;
    right: 28%;
    transform: rotateZ(10deg);
}

.image-collection img:nth-child(5) {
    top: 10%;
    right: 5%;
    transform: rotateZ(30deg);
}





.see-more-container {
    width: 65%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.see-more {
    font-size: 1.4rem;
    padding: 1rem;
    padding-top: 0.5rem;
    border-bottom: 4px solid rgb(27, 171, 255);
    border-right: 4px solid rgb(27, 171, 255);
    border-left: 4px solid rgb(27, 171, 255);
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    backdrop-filter: blur(5px);
    transition: all 0.15s ease-in-out;
    background-color: rgba(0, 0, 0, 0.7);
}

.see-more a {
    text-decoration: none;
    color: white;
    text-shadow: -2px -2px 4px rgb(4, 247, 255), 2px 2px 4px rgb(4, 21, 255);
}

.see-more:hover {
    transform: scale(1.1);
    transform-origin: top center;
}





.opinions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* auto-fit columns with a minimum of 200px width */
    grid-gap: 1rem;
}






.map-card {
    height: 20rem;
    padding: 0;
    border: 4px solid rgb(95, 27, 255);
    border-radius: 2rem;
    box-shadow: 4px 4px 0 black, 2px 2px 10px black, 2px 2px 20px black;
    text-shadow: 0 0 10px black, 0 0 5px black, 0 0 15px black ;
    background-color: rgba(0,0,0,0.7);

}



iframe {
    height: 100%;
    border-radius: 1.9rem;
    filter: grayscale(80%) invert(100%) sepia(60%) hue-rotate(220deg) brightness(110%) contrast(140%);
}




/*
.opinions {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    height: 30rem;
    transition: all  0.5s ease-in-out;
    transform: rotateX(15deg);
}

.opinion {
    position: absolute;
}

.opinion:nth-child(5) {
    position: absolute;
    transform: translate(-25%, -30%);
}

.opinion:nth-child(4) {
    position: absolute;
    transform: translate(35%, 0);
}

.opinion:nth-child(3) {
    position: absolute;
    transform: translate(-35%, 30%);
}

.opinion:nth-child(2) {
    position: absolute;
    transform: translate(25%, 60%);
}

.opinion:nth-child(1) {
    position: absolute;
    transform: translate(-15%, 90%);
}
*/






