

.home-trending-theme-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.6vw;
  width: 25vw;
  height: 5vw;
  margin-right: 1vw;
  border: 2px solid black;
  background: none;
  border-radius: 2vw;
  cursor: pointer;
  color: black;
}

.home-trending-theme-button img {
  width: 2.3vw;
  margin-right: 1vw;
}

.home-trending-theme-buttons {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  margin-top: 1vw;
}

.home-trending-theme-container {
  margin-bottom: 4vw;
}

.main-container-welcome-title {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 3vw;
  margin-bottom: 4vw;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.5vw;
  width: 10vw;
  text-align: center;
  cursor: pointer;
  border: 1px solid white;
  border-radius: 1vw;
  transition: background-color 0.15s;
  transition: border 0.15s;
  padding-bottom: 0.5vw;
}

.tool-item:hover {
  background-color: #f0f0f0;
  border: 1px solid black;
}

.tool-item img {
  width: 5vw;
}

.tools-grid {
  display: grid;
  align-items: start;
  justify-content: start;
  margin-bottom: 3vw;
}