.top-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin-top: 10px;
  gap: 10px;
}



body {
  width: 800px;
  max-width: 100%;
  margin: 0px auto; /* Adds slight margins on all sides and centers horizontally */
  padding-bottom: 20px; /* Extra space at the bottom */
  box-sizing: border-box; /* Ensures padding and borders are included in width */
  background: #f1f1f1;

}


@media (max-width: 630px) {
  body {
    width: auto; /* Ensures width adjusts to fit smaller screens */
    margin: 8px; /* Adds a slight margin around the content */
    padding: 0; /* Adjust padding if necessary */
  }
}

.gif {
  width: 100%;
  height: auto;
}

h1 {
  padding: 10px;
}

.header {
  border: 4px solid black;
  display: grid;
  grid-template-columns: auto repeat(3, 100px);
  grid-template-rows: 50px;
  grid-gap: 10px;
}

.title {
  text-align: center;
  font-size: 300%;
  color: aliceblue;
}


/* 
.box {
  box-shadow: 0 22px 70px 4px rgba(0, 0, 0, 0.56);
  width: 90%;
} */
