body {
    margin: 0px;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.background {
    position: fixed;
    z-index: -100;
    width: 100%;
    height: 100%;
    background-image: url("./assets/world_map.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: color;
    filter: blur(8px) brightness(80%);
}

.baseSplit {
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.baseSplit > .infocard {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 50px;
    background-color: rgb(177, 246, 255);
    min-width: 300px;
    border-radius: 18px;
}

.infocard > h1 {
    text-align: center;
}

.contentcard {
    flex: 1;
    background-color: white;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.contentcard > img {
    width: 100%;
    border-radius: inherit;
}

.mapcontentcard {
    display: flex;
    align-items: center;
    justify-content: center;
}

.maplink {
    filter: blur(4px) brightness(110%);
    opacity: 25%;
}

.hoverscale {
    transition: transform 0.2s;
    
}

.hoverscale:hover {
    transform: scale(104%);
}

.maptext {
    position: absolute;
    text-align: center;
    font-size: xx-large;
    color: rgb(0, 80, 184);
    font-weight: bolder;
}

.contentcardmargin {
    margin: 25px;
}

iframe {
    border-radius: 15px;
}

.copyrightnotice {
    position: fixed;
    right: 0px;
    bottom: 0px;
    margin: 2px;
}

.textcontent {
	padding: 10px;
}