*{
    box-sizing: border-box;
}

body{
    background-color: black;
}

.header{
    width: 700px;
    display: block;
    margin: auto;
}

.map{
    display: block;
    width: 100%;
    object-fit: contain;
}

.mapgroup{
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-areas: "overlay";
    place-items: center;
}

.map,
.mapgroup h1{
    grid-area: overlay;
}

.needle{
        position: absolute;
        top: 32%;
        left: 43%;
        height: 125px;
        width: 15px;
        transform-origin: center center;
        pointer-events: none;
        }

      
img.iconabout:hover{
    background-color: red;
    transform: scale(1.2);
}

img.iconvarious:hover{
    background-color: red;
    transform: scale(1.2);
}

img.iconshrines:hover{
    background-color: red;
    transform: scale(1.2);
}

img.iconmedia:hover{
    background-color: red;
    transform: scale(1.2);
}

img.iconcredits:hover{
    background-color: red;
    transform: scale(1.2);
}
img.iconsitemap:hover{
    background-color: red;
    transform: scale(1.2);
}
img.iconjournal:hover{
    background-color: red;
    transform: scale(1.2);
}
img.iconart:hover{
    background-color: red;
    transform: scale(1.2);
}




.iconabout{
    position: absolute;
    top: 4%;
    left: 42%;
    height: 50px;
}

.textabout{
    position: absolute;
    top: 15%;
    left: 42%;
    font-family: KaufferHand;
    font-size:medium;
    color:antiquewhite;
    background-color:red;
}

.iconvarious{
    position: absolute;
    top: 14%;
    left: 64%;
    height: 50px;
}
.textvarious{
    position: absolute;
    top: 25%;
    left: 63%;
    font-family: KaufferHand;
    font-size:medium;
    color:antiquewhite;
    background-color:red;
}

.iconshrines{
    position: absolute;
    top: 41%;
    left:68%;
    height: 50px;
}
.textshrines{
    position: absolute;
    top: 52%;
    left: 67%;
    font-family: KaufferHand;
    font-size:medium;
    color:antiquewhite;
    background-color:red;
}

.iconmedia{
    position: absolute;
    top: 69%;
    left:62%;
    height: 30px;
}
.textmedia{
    position: absolute;
    top: 75%;
    left: 61%;
    font-family: KaufferHand;
    font-size:medium;
    color:antiquewhite;
    background-color:red;
}

.iconcredits{
    position: absolute;
    top: 73%;
    left: 42%;
    height: 50px;
}
.textcredits{
    position: absolute;
    top: 84%;
    left: 41%;
    font-family: KaufferHand;
    font-size:medium;
    color:antiquewhite;
    background-color:red;
}

.iconsitemap{
    position: absolute;
    top: 67%;
    left: 22%;
    height: 50px;
}
.textsitemap{
    position: absolute;
    top: 78%;
    left: 19%;
    font-family: KaufferHand;
    font-size:medium;
    color:antiquewhite;
    background-color:red;
}

.iconjournal{
    position: absolute;
    top: 42%;
    left: 13%;
    height: 45px;
}
.textjournal{
    position: absolute;
    top: 52%;
    left: 12%;
    font-family: KaufferHand;
    font-size:medium;
    color:antiquewhite;
    background-color:red;
}

.iconart{
    position: absolute;
    top: 16%;
    left: 19%;
    height: 45px;
}
.textart{
    position: absolute;
    top: 26%;
    left: 23%;
    font-family: KaufferHand;
    font-size:medium;
    color:antiquewhite;
    background-color:red;
}



.something{
  display:grid;
  gap:3px;
  background:red;
  grid-template-areas:'one two two two''one three three three''one three three three''one four four five''six six six five''six six six five';
  grid-template-rows: 0.75fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, 1fr);
  width: 900px;
  max-width: 900px;
  max-height: 1200px;
  height: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.child{
  background:white;
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  font-size:3em;
}
#one{
  grid-area:one;
}
#two{
  grid-area:two;
}
#three{
  grid-area:three;
  overflow: hidden;
  background-color: black;
}
#four{
  grid-area:four;
}
#five{
  grid-area:five;
}
#six{
  grid-area:six;
}