/* input[type=text] {
    width: 130px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
  }
  input[type=submit]{
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 40%;
  } */
  
  body {
    font-size: 60px;
    padding: 10px;
  }

  h1 {
    font-size: 48px;
  }


  .nav-button {
    background: #007eff;
    border: none;
    border-radius: 10000px;
    font-size: 40px;
    color: white;
    padding: 10px 20px;
    float: right;
    margin-left: 20px;
    user-select: none;
    margin-bottom: 20px;
  }
  .nav-button:hover {
    background: #007eff99;
    transition: transform .25s;
  }
  .nav-button:active {
    transform: translateY(5px);
    transition: transform .05s
  }
  .nav-button:focus {
    outline: none;
    box-shadow: 0 0 0px 5px orange;
  }
  
  .field {
    margin-top: 10px;
    clear: both;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background-color: #ccc;
    border-radius: 65px;
    min-height: 200px;
  }
  .field li {
    padding: 7px 0;
    text-align: center;
    background: #aaa;
    user-select: none;
    width: 90px;
    height: 90px;
    border-radius: 50px;
    box-sizing: border-box;
    margin: 10px;
    animation: enter 0.25s ease-out;
    transition: background .5s;
  }
  .field li:hover {
    background: red;
    transition: background .1s, opacity .5s;
  }
  .field li:active {
    transform: translateY(5px);
  }

  @keyframes enter {
    0% {
      transform: scale(.001, .001) rotate(360deg);
      opacity: 0;
    }
    100% {
      transform: scale(1, 1)rotate(0deg);
      opacity: 1;
    }
  }
  
  #overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
  }

  #text{
    font-family: system-ui;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
  }