@media (min-width: 768px) {
  .page-header-container {
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
    padding: 100px 0px;
  }

  .page-header-container img {
    width: 80px;
    height: auto;
    margin-bottom: 25px;
  }
  .page-header-container p {
    width: 60vw;
    height: auto;
    text-align: center;
    color: rgb(90, 90, 90);
  }

  .page-header-container a {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 25px;
    padding: 15px 30px 15px 30px;
    cursor: pointer;
    border-radius: 25px;
    background-color: #ffd96a;
    color: black;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .page-header-container {
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    padding: 100px 0px;
  }

  .page-header-container img {
    width: 80px;
    height: auto;
    margin-bottom: 25px;
  }
  .page-header-container p {
    width: 90vw;
    height: auto;
    text-align: center;
    color: rgb(90, 90, 90);
  }

  .page-header-container a {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 25px;
    padding: 15px 30px 15px 30px;
    cursor: pointer;
    border-radius: 25px;
    background-color: #ffd96a;
    color: black;
    font-size: 1rem;
  }
}
