html{
  height: 100%;
}

body{
  background-image: url(https://bog-body.neocities.org/microblog/cablemap.png);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'telegram';
  height: 100%;
  margin: 0;
}

/*back button*/
.home{
  display: block;
  position: relative;
  top: 4.5vw;
  left: 4%;
  transform: translate(-50%, -40%);
  width: 3vw;
}
.home span {
			opacity: 0;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			font-size: calc(1.5rem);
			color: #D46A6A;
			line-height: 1;
			filter: drop-shadow(1px 1px 0 white)
				drop-shadow(-1px 1px 0 white) 
				drop-shadow(1px -1px 0 white) 
				drop-shadow(-1px -1px 0 white);
			text-transform: uppercase;
			z-index: 99;
			width: fit-content;
			height: fit-content;
			display: inline-block;
			position: absolute;
		}
.home:hover img {
			 transform: rotate(20deg);
    }
.home:hover span {
			opacity: 1;
    }

/*content*/
.blog{
  display: flex;
  justify-content: center;
  position: relative;
}

.telegram{
  scale: 80%;
}

.entry{
  color: black;
  position: absolute;
  top: 30%;
  left: 9%;
  width: 86%;
  height: 57%;
  overflow: auto;
  font-size: 82%;
}