iframe {
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;    
}

body::-webkit-scrollbar {
    width: 0px;               /* width of the entire scrollbar */
  }
  
  body::-webkit-scrollbar-track {
    background: orange;        /* color of the tracking area */
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: blue;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid orange;  /* creates padding around scroll thumb */
  }


.malware {
    padding: 10px;
    position: absolute;
    top: 50%;
    z-index: 99999;

}

.malware  button  {
    border: 2px solid black;
    color: white;
    background-color: blue;
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;

}

.malware  button a:hover {
    color: rgb(151, 149, 149);
}

.malware  button  a {
    color: white;
    transition: 0.3s;
}