.warning {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 50px;

  h1 {
    position: relative;
    top: 0;
    text-transform: capitalize;
    color: #000;
  }

  p {
    color: #000;
    font-size: calc(20px + 2vmin);
    text-transform: capitalize;
  }

  .btn {
    position: relative;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    /* background: #4285f4; */
    background: var(--input-bg);
    color: var(--wh-color);
    font-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.4s ease;
    transition-delay: 0.6s;
    letter-spacing: 1px;

    &:hover {
      opacity: 0.95;
    }
  }
}
