body{
    background-image: url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/f49e9371-d784-4bbd-a6db-286fb2601e1e/dg3a6xe-44e8139a-2502-4b22-b9e2-77451fb13b30.png/v1/fit/w_828,h_464,q_70,strp/_free_to_use__colorful_field___desktop_background_by_redpandapawss_dg3a6xe-414w-2x.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9ODE2IiwicGF0aCI6IlwvZlwvZjQ5ZTkzNzEtZDc4NC00YmJkLWE2ZGItMjg2ZmIyNjAxZTFlXC9kZzNhNnhlLTQ0ZTgxMzlhLTI1MDItNGIyMi1iOWUyLTc3NDUxZmIxM2IzMC5wbmciLCJ3aWR0aCI6Ijw9MTQ1NiJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.cX5GmHln6DI4sXrubCl6Y02JSVgX8fF7ZSCakvlew2E");
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px;
}

.bigContainer{
    display: grid;
    grid-template-areas:
      "menu menu"
      "safeTimer safeTimer"
      "bottomspace bottomspace";
    grid-template-rows: 1fr 15fr 1fr;
    grid-gap: 15px;
    }

.bigContainer > div.menu{
    font-family: 'Courier New', Courier, monospace;
    background-color:darkblue;
    grid-area: menu;
}

.menu a{
    float: left;
    font: arial;
    text-align: center;
    font-size: 18px;
    padding: 15px;
    color: white;
    text-decoration: none;
    transition-duration: 0.4s;
}

.menu a:hover {
    background-color: cornflowerblue;
    font-size: 18px;
  }

#safeTimer {
    background-color: rgb(253, 242, 211);
    opacity: 0.8;
}

.safeTimer {
    grid-area: safeTimer;
    margin-top: 100px;
    margin-left: 200px;
    margin-right: 200px;
    text-align: center;
}

.rubik {
    font-family: "Rubik", serif;
    font-optical-sizing: auto;
    font-weight: 10;
    font-style: normal;
  }

#safeTimerDisplay {
    font-size: 5rem;
    font-family: Rubik;
}

.safeTimer h2{
    font-size: 4rem;
    font-family: Rubik;
}



/* Dropdown Button */
.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #3e8e41;}