body {
  background-color: #1087ff;
  font-family: 'Courier New', Courier, monospace;
  color: white;
  margin:0;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  cursor: url('star.png') 16 16, auto;
}
body:active,
body:focus, a:active {
  cursor: url('star.png') 16 16, auto;
}
.page-container {
  display: flex;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding:5px;
}



.logo{
  height: 50px;
  padding: 1em;
  width:auto;
  cursor: url('star.png') 16 16, auto;
}

.menu{
  display:flex;
  align-items: center;
  justify-content: space-between;
}

ul {
  list-style-type: none;
  margin: 0;
  display: flex;
}

ul li a {
  color: white;
  text-decoration: none;
  cursor: url('star.png') 16 16, auto;
  user-select: none; 
  -webkit-user-select: none;
}

ul li a:hover:not(.active) {
  background-color: #6fb8ff;
  cursor: url('star.png') 16 16, auto;
  user-select: none; 
  -webkit-user-select: none;
}

ul li a.active {
  font-weight: bolder;
  color: white;
  cursor: url('star.png') 16 16, auto;
  user-select: none; 
  -webkit-user-select: none;
}


@media screen and (max-width: 1320px) {
  .menu {
      padding: 10px 5px;
  }
  
  .logo {
      height: 5x;
      padding: 0;
      cursor: url('star.png') 16 16, auto;
  }
}

a {
    padding: 5px 12px;
}
  

.container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
}

h1, h2, h3, h4, h5 {
  text-align:center;
}

p{
  text-align: center;
  padding: 1em 3em 1em 3em;
}

.wrapper {
  display: flex;
  align-items: flex-start;
}

.wrapper > * {
  margin: 20px;
}

.box {
  border: 5px #1087ff;

}

img {
  height:100%;
  width: 100%;
}

.cover {
  object-fit:cover;
}
.contain{
  object-fit:contain;
  
}

footer{
  
  text-align: center;
  padding: 5% 5%;
  color:white;
}

a{
  color: white;

}
/* Base button styles */
.custom-btn, .ml-onclick-form {
  background-color: #1087ff; /* Blue background */
  color: white;              /* White text */
     /* Spacing inside the button */
  font-size: 12px;
  border: none;   
  padding: 12px 12px;           /* Removes default browser border */
  border-radius: 6px;        /* Rounded corners */
  cursor: pointer;           /* Changes mouse cursor to a pointer hand */
  transition: background 0.2s ease; /* Smooth visual transition */
  text-align: center;
  display: inline-block;
  width: fit-content;
  align-self: center;
  text-decoration: none;
  cursor: url('star.png') 16 16, auto;
  user-select: none; 
  -webkit-user-select: none;
  gap: 40px;
}

/* When the user hovers over the button */
.custom-btn:hover, .ml-onclick-form:hover {
  background-color: #0b5fb3; /* Darker blue */
  cursor: url('star.png') 16 16, auto;
  user-select: none; 
  -webkit-user-select: none;
}

/* When the user clicks / holds down the button */
.custom-btn:active, .ml-onclick-form:hover {
  background-color: white; /* Deepest blue */
  transform: scale(0.98);    /* Slight shrink effect to mimic physical press */
  cursor: url('star.png') 16 16, auto;
  user-select: none; 
  -webkit-user-select: none;
}

h2{
  text-align: center;
}

.ml-form-embedContainer{
  gap: 40px;
  font-family: 'Courier New', Courier, monospace;
  cursor: url('star.png') 16 16, auto;
  user-select: none; 
  -webkit-user-select: none;
}