* {
    background-color: rgb(218, 225, 232);
    background: none;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    overflow: hidden; /*Comment this line to verify correct screen size; else; you can´t know if screen size will fit ok on mobile devices.*/
    min-width: 100%;
}

body::-webkit-scrollbar {
    position: absolute;
    background-color: #5b5b5b;
    width: 22px;
}
body::-webkit-scrollbar-thumb {
    background-color: #989898;
    border: 5px solid #5b5b5b;
    border-radius: 10px;
}