@media screen and (max-width: 1600px) {
  body {
    font-size: 16px;
  }
}

.app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient( to top, rgb(4, 61, 167), #0b012c);
  color: rgb(9, 196, 230);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 2px 10px 24px rgb(9, 196, 230);
  
}
*{
    box-sizing: border-box;
    margin: 0%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient( to top, rgb(4, 61, 167), #0b012c)
    
}
.card{
    margin: 0 auto;
    max-width: 450px;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    border: 2px solid rgb(9, 196, 230);
    border-radius: 16px;
    background: linear-gradient( to top, rgb(4, 61, 167), #0b012c);
    box-shadow: 2px 10px 24px rgb(9, 196, 230);
    color: rgb(9, 196, 230);
}
.card button {
    width: 200px;
    height: 50px;
    display: flex; 
    align-items: center;
    justify-content: center;   
    font-size: 22px;
    color: rgb(4, 61, 167);
    background-color: rgb(9, 196, 230);
    border: 2px solid rgb(9, 196, 230);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.1s ease-in-out;
    box-shadow: 2px 10px 24px rgb(9, 196, 230);
   
    
}