body {
    background-image: url("/reynaldo-rivera-GzyFjagwlqE-unsplash.jpg");
    background-size: cover;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 20px;
    margin: auto;
    border: 3px solid goldenrod;
    border-radius: 10px;
}

h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: silver;
    width: 100%;
    max-width: 500px;
    font-size: 1.2rem;

}

h2 {
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 500px;
    color: antiquewhite;
    width: 100%;
    font-size: 1.2rem;

}

button {
    border: 1px solid-black;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
}

#increment-btn {
    background: darkgoldenrod;
    text-size-adjust: 100px;
}

#save-btn {
    background: darkgreen;
}

p {
    color: whitesmoke;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  .counter-box {
    padding: 10px;
    width: 90%;
  }
}

img {
  max-width: 100%;
  height: auto;
}
