* {
    margin: 0;
    padding: 0;
}

body,html {
    background: #FFF8E7;
    width: 100%;
    height: 100%;
}

.body {
    position: relative;
    width: 100%;
    height: 100%;
}

img {
    max-width: 100%; /* Ensures the image is never wider than its container */
    height: auto;    /* Automatically adjusts height to maintain aspect ratio */
    position: relative;
    border-radius: 10%;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 400px));
  gap: 1rem; /* Adds space between the items */
  padding: 1rem;
}

.grid-item {
  border-radius: 5px;
  padding: 0.25rem;
  text-align: center;
  align-content: center;
}
