#admin .container {
  display: flex;
  flex-direction: column;
  margin: 0 0.75rem;
}

#admin .title {
  font-size: 20px;
  font-family: "Gotham Bold", sans-serif;
  color: white;
}

#admin-video {
  align-self: center;
  height: 180px;
  width: auto;
  /* make pixels instead */

  border-radius: 25px;
}

.sign-up {
  width: 160px;
  height: 30px;
  border: double 0.5px transparent;
  border-radius: 5px;
  background-image: linear-gradient(black, black),
    linear-gradient(
      90deg,
      rgba(139, 244, 110, 0.75) 0%,
      rgba(132, 232, 243, 0.75) 96.54%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 14px;
  padding: 0px;
  margin-top: 20px;
  visibility: hidden;
}

#admin .container .sign-up p {
  font-size: 15px;
  font-family: "Gotham Pro Regular", sans-serif;
}

@media only screen and (min-width: 768px) {
  #admin .container {
    margin: 3rem auto;
    max-width: calc(260px * 3 + 32px * 2);
  }

  #admin .title {
    font-size: 45px;
    margin-bottom: 3rem;
  }

  .sign-up {
    width: 340px;
    height: 50px;
    border: double 2px transparent;
    border-radius: 10px;
    background-image: linear-gradient(black, black),
      linear-gradient(
        90deg,
        rgba(139, 244, 110, 0.75) 0%,
        rgba(132, 232, 243, 0.75) 96.54%
      );
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: 14px;
    padding: 0px;
    margin-top: 20px;
  }

  #admin .container .sign-up p {
    font-size: 32px;
    font-weight: bold;
  }

  #admin-video {
    height: 380px;
  }
}
@media only screen and (min-width: 1440px) {
  #admin-video {
    height: 480px;
  }
}
