 @keyframes cool {
            0% {right: 50px;}
            50% {right: 25px;}
            100% {right: 0px;}
        }
        body {
            position: relative;
            font-family: Arial;
            color: white;
            background-color: rgb(25, 25, 25);
            text-align: left;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            animation-name: cool;
            animation-duration: 100ms;
            animation-timing-function: cubic-bezier(0.05,0.1,1,1);
        }
        
        p {
            font-size: large;
        }

        ::-webkit-scrollbar-track {
            background: #000000;
        }

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

        ::-webkit-scrollbar-thumb {
            background: white;
            border-radius: 4px;
        }
        
        img {
            border-radius: 4px;
            width: 400px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgb(177, 177, 177);
        }