@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
        }

        d {
            right: 800px;
            font-size: 50px;
            position: absolute;
        }

        .bob {
            position: absolute;
            top: 5px;
            right: 5px;
            background-color: white;
            border-radius: 50px;
            cursor: pointer;
			   border: 0.1px;
			   width: 50px;
			   height: 50px;
			   cursor: url(corecursor.cur), auto;
        }

        .bob:hover,
        .bob:focus {
            background-color: #eeeeee;
        }

        .dropbtn {
            background-color: white;
            color: black;
	    border: 0.1px;
            font-size: 16px;
            border-radius: 50px;
	    width: 50px;
	    height: 50px;
	    cursor: url(corecursor.cur), auto;
        }

        .dropbtn:hover,
        .dropbtn:focus {
            background-color: #eeeeee;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f1f1f1;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-radius: 50px;
            background-color: white;
        }

        .dropdown a:hover {
            background-color: #eeeeee;
            border-radius: 54px;
        }

        .show {
            display: block;
            border-radius: 50px;
        }

        .container {
            visibility: hidden;
            position: absolute;
            width: 300px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 10px;
            padding: 15px 10px;
            box-shadow: 0px 2px 8px 0px #9999;
        }

        .menu {
            list-style-type: none;
        }

        .menu .item {
            display: flex;
            align-items: center;
            padding: 5px 10px;
            cursor: url(corecursor.cur), auto;
            border-radius: 5px;
            margin: 3px;
        }

        .menu .item:hover {
            background: rgba(0, 0, 0, 0.5);
            color: #f2f2f2;
        }

        .menu .item i {
            padding-right: 5px;
        }

        .menu .setting {
            border-top: 1px solid #ccc;
            margin-top: 10px;
        }

        .menu .share {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .menu .share .share-menu {
            visibility: hidden;
            position: absolute;
            left: 260px;
            top: -48px;
            width: 170px;
            background: rgba(255, 255, 255, 0.5);
            box-shadow: 0px 2px 8px 0px #9999;
            padding: 10px 5px;
            border-radius: 5px;
            color: #000000;
        }

        .menu .share:hover .share-menu {
            visibility: visible;
            animation: show 0.5s;
        }

        @keyframes show {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        hedding {
            position: absolute;
            top: 150px;
            left: 20px;
        }

        .center {
            top: 10px;
            position: absolute;
        }

        a {
            text-decoration: none;
            color: black;
        }

        .box {
            width: 100px;
            height: 100px;
            background-color: black;
            margin: 5px;
	    cursor: url(cursor.cur), auto;
        }

        * {
            cursor: url(corecursor.cur), auto;
        }
		  t {
			  cursor: url(coretext.cur), auto;
		  }
