body {
    font-family: "Helvetica", sans-serif;
  }
  
  div {
    position: fixed;
    top: 0;
    left: 0;
    padding: 24px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }
  
  div.layer2 {
    mix-blend-mode: lighten;
  }
  
  div.buttons {
    z-index: 10;
    display: flex; 
    flex-direction: row;
    justify-content: flex-start;
    height: fit-content;
    width: 100%;
    @media(max-width: 768px) {
      justify-content: space-between;
    }
    @media(max-width: 478px) {
        flex-direction: column;
    }
  }
  
  button {
    align-self: center;
    background-color: transparent;
    border: solid 2px  #000000;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
      @media(max-width: 478px) {
        margin-bottom: 16px;
        width: 100%;
    }
  }

  button:first-child {
    @media(min-width: 768px) {
        margin-right: 16px;
    }
  }
  
  button:hover {
    background-color: #000000;
    color: #ffffff;
  }
  
  
  
  
