
html, body { height: 100%; }
body {
  margin: 0;
  background: #f6f7f8;
  color: #0f172a;
  font: 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";

}

.container {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.folderGrid {
  display: flex; 
  align-items: center;
  justify-content: center;
  gap: 48px;   
}

.folder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;  
  color: inherit;
}

img {
  width: 10vw;
  height: auto;
}

.title {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  color: #0f172a;
  text-align: center;
}

.folder img:hover { transform: translateY(-5px); }
