.home-container {
  width: 100%;
  display: flex;
  overflow: auto;
  min-height: 100vh;
  align-items: center;
  border-color: var(--dl-color-gray-black);
  border-style: solid;
  border-width: 0px;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(to right, #fc00ff 0%, #00dbde 100%);
}
.home-link {
  display: contents;
}
.home-image {
  flex: 0;
  width: 150px;
  height: auto;
  object-fit: cover;
  transition: 0.3s;
  border-color: #ffffff;
  border-width: 0px;
  border-radius: var(--dl-radius-radius-round);
  text-decoration: none;
}
.home-image:hover {
  width: 170px;
  height: auto;
}
.home-image:active {
  width: 150px;
  height: auto;
  z-index: 100;
}
@media(max-width: 991px) {
  .home-container {
    z-index: 100;
    box-shadow: 5px 5px 10px 0px #d4d4d4;
    border-color: var(--dl-color-gray-black);
    border-width: 1px;
  }
}
