body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
}

ui{
    -webkit-box-shadow: 8px 8px 24px 0px rgba(84, 84, 88, 1);
-moz-box-shadow: 8px 8px 24px 0px rgba(84, 84, 88, 1);
box-shadow: 8px 8px 24px 0px rgba(84, 84, 88, 1);

}

.myButton {
    box-shadow: 0px 10px 14px -7px #18b65a;
    background: linear-gradient(to bottom, #599bb3 5%, #18b65a 100%);
    background-color: #599bb3;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 20px;
    font-weight: bold;
    padding: 13px 32px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #3d768a;
    
}

.myButton:hover {
    background: linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
    background-color: #18b65a;
    
}
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(0, 255, 115)(0, 255, 179);
  color: white;
  text-align: center;
}

.myButton:active {
    position: relative;
    top: 1px;
    
}

h {
    font-size: small;
}

h1 {
    font-size: medium;
}

h2 {
    font-size: larger;
}

h3 {
    font-size: large;
}

h4 {
    font-size: 40px;
}

h,
h1,
h2,
h3,
h4 {
    color: azure;
    text-shadow: 4px 4px 6px rgba(44, 214, 36, 1);
}

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 7, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

#loadingSpinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
