html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin:0;
  padding:0;
  background-color:#000;
}

footer{
    line-height:20px;
    padding:10px;
}

.HomeAbout {
    min-height: 400px;
    font-size: 15pt;
    font-family: 'Rajdhani', sans-serif;
    background-color: rgba(0,0,0,0.8);
    z-index: 99999;
    color: #fff;
}

.MnuBtn {
    width: 80px;
    background-color: #800000;
    text-decoration: none;
    color: #fff;
}

.tooltip-wrap {
    position: relative;
}

    .tooltip-wrap .tooltip-content {
        display: none;
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #ffffff;
        color: #800000;
        padding: 10px;
        min-width: 10rem;
        min-height: 75px;
        border-radius: 10px;
    }

    .tooltip-wrap:hover .tooltip-content {
        display: block;
    }

