/* styles.css */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.logo img {
  width: 100px;
  height: auto;
}


.desktop {
  background-image: url('/images/magenta-abstract-wallpaper.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 40px;
  padding: 60px;
  box-sizing: border-box;
  justify-items: center;
  align-items: start;
}

.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  text-align: center;
}

.icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.2s;
}

.icon:hover img {
  transform: scale(1.1);
}

.icon span {
  margin-top: 10px;
  font-size: 14px;
}

.highlight {
  color: red;
  font-weight: bold;
}
