*,
*::before,
*::after {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

/* --- */

html {
  font-size: 16px;
}

body {
  font-family: sans-serif;
}

#container{
  background-color: rgba(173, 216, 230,0.7);
  background-image: linear-gradient(
    45deg,
     rgba(0, 0, 0, 0.1),
     rgba(0, 0, 0, 0.5));
     display: flex;
     flex-direction: column;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.tFondo{
  width: 200%;
  color: #444444;
  font-size: 6rem;
  font-weight: bolder;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.4);
  transform: rotate(-45deg);
  position: fixed;
  z-index: -1;
}

.img-box{
  width: 600px;
  padding: 40px 0px 40px 80px;
  background-color: rgba(240,248,255,0.3);
  border-radius: 20px;
  box-shadow: 3px 3px 3px 0.8;
  display: flex;
}

.recuadro{
  width: 600px;
  height: 100px;
  padding: 0px;
  background-color: rgba(240,248,255,0.3);
  border-radius: 20px;
  box-shadow: 3px 3px 3px 0.8;
}

#img-map >area{
  outline: none;
}

#img-map > .msg{
  height: 100px;
  width: 90%;
}

.msg > p{
 font-family: sans-serif;
 font-size: 2rem;
 font-weight: lighter;
 text-align: center;
 text-shadow: 1px 0px 3px rgba(0, 0, 0, 0.5);
 display: none;
 margin: 30px 0px 0px 90px; 
}

[href="#admin"]:hover ~ .msg > .msg-admin{
  display:block;
}
[href="#app"]:hover ~ .msg > .msg-app{
  display:block;
}
[href="#notes"]:hover ~ .msg > .msg-notes{
  display:block;
}
[href="#time"]:hover ~ .msg > .msg-time{
  display:block;
}
[href="#contact"]:hover ~ .msg > .msg-contact{
  display:block;
}
[href="#resources"]:hover ~ .msg > .msg-resources{
  display:block;
}
[href="#cal"]:hover ~ .msg > .msg-cal{
  display:block;
}
[href="#video"]:hover ~ .msg > .msg-video{
  display:block;
}
[href="#marks"]:hover ~ .msg > .msg-marks{
  display:block;
}

[href="#home"]:hover ~ .msg > .msg-home{
  display:block;
}