html {
height: 100%;
}
body {
width: 100%;
height: auto;
min-height: 35rem;
background-color: #1a1e23;
background-image: linear-gradient(to bottom, rgba(1,1,1,.35) 0%, rgba(1,1,1,.55) 90%, rgba(26, 30, 35, 0.8) 100%), url("/img/world-bg.jpg");
background-position: center top;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
color: #e2e8f0;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1a1e23;
}
::-webkit-scrollbar-thumb {
background: #2b313b;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #2f363f;
}