body
{
  overflow-y: scroll
}

::-webkit-scrollbar {
    width: 10px;
}
  
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #23272A;
    border-radius: 10px;
}
  
::-webkit-scrollbar-thumb {
    background: skyblue;
    border-radius: 10px;
}

h1 {
    margin-left: auto;
    margin-right: auto;
    color: whitesmoke;
    font-size: 25;
}
p {
    margin-left: auto;
    margin-right: auto;
    color: whitesmoke;
    font-size: 20;
}

.warn {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    color: whitesmoke;
}

.body {
    margin-left: 25%;
    margin-right: 25%;
}

.footer {
    background-color: skyblue;
    width: 100%;
    height: 10%;
    position: fixed;
    bottom: 8;
}

hr {
    width: 45%;
    border-color: #a7a6a6;
  }

input {
    background-color: #6e6e6e;
    padding: 0.225rem 0.35rem;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0.575rem;
    width: 35%;
    display: inline-block;
    margin-left: 5px;
    border-color: #c9c8c8;
    text-align: center;
    color: white;
}

#overlay {
    position: fixed; 
    display: none; 
    width: 100%; 
    height: 100%; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: pink; 
    z-index: 2; 
    cursor: pointer; 
  }

  #text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
  }