.home {
  position: fixed;
  top: 2.1%;
  left:1%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9999;
}

@media print {
  .home, .icon-info {
    display: none !important;
  }
}
.home a {
  display:inline-block;
  text-align: center;
  padding: 0px;
  transition: all 0.3s ease;
  color: #dd4b39;
  font-size: 25px;
}

.home a:hover {
    color: #bb0000;
}

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 9997;
  top: 0;
  left: 0;
  background-color: rgb(52,134,235);
  background-color: rgba(52,134,235, 0.9);
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #231f20;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: red;
  transform: scale(1.5);
}

.overlay .closebtn {
  position: absolute;
  top: 30px;
  right: 45px;
  font-size: 30px;
  color: #FFF;
}

@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

.icon-info {
  position: fixed;
  top: 75%;
  right:2px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
}

.icon-info a {
  display: block;
  text-align: center;
  padding: 0px;
  transition: all 0.3s ease;
  color: #dd4b39;
  font-size: 50px;
}

.icon-info a:hover {
    color: #bb0000;
}


