.wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.box {
  margin: 0px;
  padding: 10px;
  border-radius: 3px;
  min-width: 350px;
  flex-grow: 1;
}

.box-user {
  background: var(--second-color);
  color: black;
}

.box-today {
  background: var(--main-color);
  color: white;
}

.box-search {
  display: block;
  width: 100%;
  color: white;
  text-decoration: none;
}

#clock {
  font-size: 50px;
  font-weight: 900;
}

.a-menu {
  margin: 0 5px;
  text-decoration: none;
  color: white;
  background: none !important;
}

.a-menu img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  transition: 0.3s;
}

.a-menu img:hover {
  transform: scale(1.2);
  filter: contrast(0.1);
}
