html {
    background-color: rgb(0, 0, 0);
}

label {
    color: white;
} 


#MainBox {
    display: flex;
    flex-direction: column;
    background-color: rgb(0, 0, 224);
    width: fit-content;
    height: fit-content;
    align-items: center;
    justify-self: center;
    margin-top: 200px;
}
#MainBoxHeader {
    display: flex;
    flex-direction: row;
    background-color: darkslategray;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 100%;
    justify-content: space-between;
}
#CatOSLabel {
    color: white;
    font-weight:bolder;
    font-size: 400%;
    margin-top: 0%;
    margin-left: 1%;
    margin-bottom: 0%;
}

#UsernameDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
#UsernameLabel { 
    font-weight: bolder;
    color: white;
    font-size: clamp(2rem, 6cqh, 2rem);
    padding-right: 40px;
    padding-left: 10px;
}

#UsernameBox {
    height: 20px;
    align-self: center;
    margin-right: 10px;
}

#PasswordDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: -30px;
}
#PasswordLabel {
    font-weight: bolder;
    font-size: clamp(2rem, 6cqh, 2rem);
    color: white;
    padding-right: 40px;
}

#PasswordBox {
    height: 20px;
    align-self: center;
}

#LoginButtonID {
    height: 40px;
    width: 100px;
    background-color: rgb(235, 235, 235);
    margin-bottom: 20px;
}

#InfoButtonID {
    height: 75px;
}

/* thank you stack overflow we love youuuuuuu */
.tooltip-trigger {
    position: relative;
    cursor: help;
    height: 75px;
    padding-bottom: 0px;
}


.tooltip-trigger::after {
  position: relative;
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%; 
  left: 100%;
  transform: translateX(-50%); 
  width: 200%;
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  white-space: wrap; 
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.tooltip-trigger:hover::after,
.tooltip-trigger:hover::before {
  visibility: visible;
  opacity: .9;
}

@media screen and (max-height: 768px) {
}
