body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('pictures/air_university_headquarters.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}



main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


.large-centered-text {
  font:bolder;
  font-size: 128px;
  text-align: center;
  border: none;
  background: radial-gradient(rgba(35, 27, 145, 0.507), rgba(177, 168, 168, 0));
  font-weight: bold;
  cursor: pointer;
  color: rgb(236, 230, 230);
  padding: 10px 20px;

}   

.element-hover {
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.element-hover:hover {
  background-color: #00000000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* border: 2px solid rgb(50, 115, 236); */
