@layer shell {
  #homepage {
    --primary: #083175;
    --neutral-darker: #262626;

    background: white;
    background-image: url('../img/folders.png'), url('../img/folders-2.png');
    background-position: bottom left, bottom right;
    background-repeat: no-repeat;
    background-size: 22.5%;
    padding: 24px;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;

    .label-container {
      display: flex;
      flex-direction: column;
      align-items: center;

      .title {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--neutral-darker);
      }

      .darker-title {
        color: var(--primary);
      }
    }
  }

  .custom-btn {
    --primary-darker: #021345;
    --primary-dark: #000E88;
    --primary: #083175;
    --neutral-darker: #262626;

    min-height: 40px;
    font-size: 14px;
    font-weight: 600;
    padding: .5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;

    &:hover {
      background-color: var(--primary-dark);
    }

    &:active {
      outline: 2px solid var(--neutral-darker);
      background-color: var(--primary-darker);
    }
  }

  button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
  }

  /* Media Queries */
  @media screen and (max-width: 768px) {
    .custom-btn {
      min-height: 40px;
      font-size: 14px;
      font-weight: 600;
      width: 100% !important;
      text-align: center;
      display: flex;
      justify-content: center;
      height: 48px;
    }
  }
}