@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    padding: 0;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: #ff7800;
    border-radius: 10px;
}

body {
    overflow: hidden;
    background-color: #eee;
}

#bot-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

#bot-title span {
    color: #ff7800;
}