body {
    background-color: rgb(33, 33, 33);
    overflow-x: hidden;
    font-family: Verdana, sans-serif;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background:#0000 ; 
  }
::-webkit-scrollbar-thumb {
    background:rgb(111, 111, 111);
    border-radius: 5px;
}
.term {
    position: relative;
    top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.doc {
    border-radius: 12px;
    text-align: center;
    background: #484848;
    color: white;
    padding: 15px;
    width: 80%;
    height: 80vh;
    overflow: auto;
    border: 3px solid rgb(25, 25, 25);
}
.doc p {
    font-size: 30px;
}
.doc h1 {
    font-size: 15px;
}
.doc h2 {
    color: rgb(0, 195, 255);
}
.agree {
    position: absolute;
    bottom: -100px;
    text-align: center;
    width: 100%;
    padding-bottom: 30px;
}
.agree button {
    border-radius: 12px;
    padding: 12px 16px;
    border: none;
    background-color: rgb(0, 195, 255);
}