
h2 {
  font-size: 25vh;
  display: grid;
  place-items: center;
}

@media screen and (max-width: 933px) {
  h2 {
    font-size: 20vh;
  }
}
@media screen and (max-width: 749px) {
  h2 {
    font-size: 11vh;
  }
}
@media screen and (max-width: 443px) {
  h2 {
    font-size: 8vh;
  }
}


html {
  block-size: 100%;
  inline-size: 100%;
}

body {
  min-block-size: 100%;
  min-inline-size: 100%;
  margin: 0;
  font-family: system-ui, sans-serif;
  
}

@media (orientation: landscape) {
  body {
    grid-auto-flow: column;
  }
}

* {
  box-sizing: border-box;
}

*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-content: center;
  background: linear-gradient(315deg, #ffffff, #d7e1ec);
  background-attachment: fixed;
}

.wrapper {
  display: inline-flex;
  position: absolute;
  bottom: 22vh;
}

.wrapper .icon {
  background-color: #ffffff;
  border-radius: 50%;
  padding: 5vh; /* 30px / 10px / 50px / 50 px / 22px */
  margin: 0.75vh;
  width: 4vh;
  height: 4vh;
  font-size: calc(100% + 3vh);
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 1vh 1vh rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media screen and (max-width: 711px) {
  .wrapper .icon {
    font-size: calc(100% + 2vh);
    padding: 4vh;
    width: 3vh;
    height: 3vh;
    box-shadow: 0 0.1vh 0.1vh rgba(0, 0, 0, 0.1);
    margin: 1vh;
  }
}

@media screen and (max-width: 616px) {
  .wrapper .icon {
    font-size: calc(100% + 1vh);
    padding: 3vh;
    width: 2vh;
    height: 2vh;
    box-shadow: 0 0.1vh 0.1vh rgba(0, 0, 0, 0.1);
    margin: 1.5vh;
  }
}

@media screen and (max-width: 543px) {
  .wrapper .icon {
    font-size: calc(100% + 1vh);
    padding: 2.5vh;
    width: 0.5vh;
    height: 0.5vh;
    box-shadow: 0 0.01vh 0.01vh rgba(0, 0, 0, 0.1);
    margin: 0.5vh;
  }
  .wrapper {
    bottom: 32vh;
  }
}
@media screen and (max-width: 443px) {
  .wrapper .icon {
    font-size: calc(100% + 0.5vh);
    padding: 2.2vh;
    width: 0.25vh;
    height: 0.25vh;
    box-shadow: 0 0.01vh 0.01vh rgba(0, 0, 0, 0.1);
    margin: 0.25vh;
  }
}




.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 2vh;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  white-space: nowrap;
  min-width: max-content;    
  text-align: center;  
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px; 
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -2.5rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .discord:hover,
.wrapper .discord:hover .tooltip,
.wrapper .discord:hover .tooltip::before {
  background-color: #3b5999;
  color: #ffffff;
}
.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background-color: #e1306c;
  color: #ffffff;
}
.wrapper .gallery:hover,
.wrapper .gallery:hover .tooltip,
.wrapper .gallery:hover .tooltip::before {
  background-color: #91bdff;
  color: #ffffff;
}
.wrapper .assistance:hover,
.wrapper .assistance:hover .tooltip,
.wrapper .assistance:hover .tooltip::before {
  background-color: #333333;
  color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
  background-color: #de463b;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: black;
}

a:hover{
 text-decoration: none;
} 
.dre {
  position: fixed;
  align-items: normal;
  bottom: 0;
  margin-bottom: 10vh;
  left: 0;
  font-size: 3vh;
  color: black;
  border-top: 1.8px solid rgb(25, 45, 75);
  border-left: 0px;
  border-bottom: 0px;
  border-right: 0px;
  background: linear-gradient(315deg, #ffffff, #d7e1ec);
  padding: 5px 14.5px;
  font-family: "Calibri Light";
  cursor: pointer;
  z-index: 10;
}
.reload {
  font-family: Lucida Sans Unicode
}
/* FOOTER */
#footer {background-color: rgb(10, 10, 10);color: rgba(255, 255, 255, 0.75);bottom: 0;position:fixed;width: 100%;text-align: center;padding: 2vh 0;}
a.foot {margin: 0 20px; color: rgba(255, 255, 255, 0.75)}
a.foot:hover {text-decoration: none; color: rgb(255, 255, 255);}
a.home {text-decoration: none; margin: 0 25px; color: rgb(255, 255, 255);}
