@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    background-color: #445318;
    color: white;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

div {    
    background-color: #A4C639;
    box-sizing: border-box;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 6px;
    width: 50%;
    overflow: auto;
}

h1 {color:#A4C639}

button {
    background-color: white;
    padding: 5px;
    color: #445318;
    border:none;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

img.stack {
  position: absolute;
  top: 0;
  left: 0;
}

a {text-decoration: none; color:#445318;  text-decoration-color: white; font-weight: bold;}
a.hover {color: white;}
mark {background-color: white; color:#a4c639; padding: 1px;}
button:hover {box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);}

button {cursor: pointer;}
button.no {cursor: not-allowed; background-color: grey; color:darkgray}

.left {
    float: left;
    margin-right: 20px;
  }
  
  .right {
    float: right;
    margin-left: 20px;
  }

@media (max-width: 768px) {div {width: 100%;}}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
}
.grid-item {
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  font-size: 30px;
  text-align: center;
}

/* This CSS file attempts to replicate the shadows of the original Google Material Design,
without actually recrating it since it would cause issues with older devices. Droid! */