* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial;
    font-size: 17px;
  }
  
  #clip {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    max-height: 100%;
    max-width: 100%;
    align-items: center;
  }

  
  .content {
    position: fixed;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    color: rgb(0, 110, 255);
    width: 100%;
    padding: 20px;
    bottom: 10%;
  }
  
  #myBtn {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: rgb(255, 174, 0);
    color: #fff;
    cursor: pointer;
    
  }

  #myBtn2 {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: rgb(255, 174, 0);
    color: #fff;
    cursor: pointer;
  }
  
  #myBtn:hover {
    background: #ddd;
    color: black;
  }