.spinner {
    z-index: 1;
    background-image: url("../images/loading.gif");
    background-repeat: no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    position: absolute;
  }

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#font-monospace{
    font-family: monospace;
}

.screen-centered {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

.align-center{
    text-align: center;
}

.align-left{
  text-align: left;
}

.align-right{
  text-align: right;
}

.textcolor-white{
  color: #ffffff;
}

.textcolor-red{
  color: rgb(255, 0, 0);
}

.heading-color{
    color: rgb(1, 90, 90);
}

.heading-color2{
  color: rgb(2, 155, 155);
}

.border-solid{
    border: 1px solid;
    border: 4mm ridge rgba(138, 143, 40, 0.904);
    /*border: 6mm ridge rgb(62, 100, 100);*/
}

.round-width-100{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}