div#tips {
    color: aliceblue;
    position: absolute;
    top: 6.5em;
    right: 3em;
    width: 12em;
    background-color: rgba(0, 0, 0, 0.42);
    border: 3px;
    border-color: blueviolet;
    border-radius: 5%;
    border-style: dashed;
    margin: 0px;
    padding-bottom: 3em;
    text-align: center;
}

div#tipsOKButton {
    cursor: pointer;
    position: absolute;
    margin-top: 1em;
    margin-left: 55%;
    border: 1px;
    border-style: dotted;
    border-radius: 5%;
}

@media screen and (max-width: 768px) and (orientation: portrait){
    div#tips {
        width: 14em;
        top: 3em;
        right: 8em;
        padding-bottom: 0;
    }

    div#tipsOKButton {
        display: none;
    }
  }