        body {
            margin: 0px;
            padding: 0px;
            background-color: white;
            margin-left: 200px;

            overflow: hidden;
        }

        
        .sidebar {
            margin: 0 auto;
            background-image: url("/site_assets/cloudsnosig.png");
            background-size: cover;
            background-repeat: no-repeat;
            background-color: white;
            width: 200px;
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            padding: 10px;
            padding-top: 30px;
            box-sizing: border-box;
            overflow-x: hidden;
            overflow-y: scroll;
        }

        .container {
            height: 100vh;
            overflow-y: scroll;
        }

        article {
            max-width: 1000px;
            margin: 0 auto;
            height: 100%;
        }

        #one a {
            background-color: white;
            padding: 7px;
            margin: 15px 0px;
            text-decoration: none;
            text-align: left;
            color: #2465bf;
            font-size: 17px;
            width: 160px;
            display: block;
            transition: 0.2s;
        }

        #one a:hover {
            background-color: #2465bf;
            color: white;
        }