body {
  background: #fff url(../background.jpg) no-repeat center bottom fixed;
  background-size: cover;
  overflow: hidden;
}

a {
  color: inherit;
  transition: color 150ms;
}

a:hover {
  text-decoration: none;
}

.welcome-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  margin-bottom: 1rem;
}

.welcome-header img {
  width: 200px;
  margin-bottom: 40px;
}

.welcome-header h1 {
  color: white;
}

.app-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 20px;
  min-height: 400px;
}

.app-box {
  display: flex;
  justify-content: center;
}

.app-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
  border-radius: 0.75rem;
  border-top: 4px solid;
  border-color: #d3be90;
  transition: border 150ms;
  background-color: white;
  transition: all 150ms;
}

.app-list:hover {
  border-color: #06c;
  box-shadow: rgb(36 36 36 / 61%) 1px 7px 8px 0px;
  scale: 1.02;
}

.app-logo {
  margin-bottom: 0.5rem;
}

.app-logo img {
  width: 8rem;
  margin-right: 0;
}

.app-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.app-description {
  display: none;
  font-size: 1rem;
}

@media only screen and (min-width: 576px) {
  /* For phone: */
  .app-container {
  }

  .app-list {
    padding: 2rem;
  }

  .app-description {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  /* For tablet: */
  .app-container {
  }

  .app-list {
  }

  .app-title {
    margin-bottom: 1.5rem;
  }
}

@media only screen and (min-width: 992px) {
  /* For desktop: */
  .app-container {
  }

  .app-list {
  }
}
