I am unable to load SafeERC20

I am losing my mind trying to import SafeERC20.sol (let alone all of the uniswap v2 contracts I need as well) in my contract. I have read all of the previous answers to this question and looked at all of the tutorials. The error I get is "Error: not found @github.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC20/utils/SafeERC20.sol"

I have tried using "https://...." instead of "@github.com/". I have also tried loading the libraries using the import button on the main screen of remix.

:1234: Code to reproduce

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
pragma abicoder v2;

import "@github.com/Uniswap/v2-periphery/blob/master/contracts/libraries/UniswapV2Library.sol";
import "@github.com/Uniswap/v2-periphery/blob/master/contracts/UniswapV2Router02.sol";
import "@github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IUniswapV2Pair.sol";
import "@github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IUniswapV2Factory.sol";
import "@github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IERC20.sol";
import "@github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/utils/SafeERC20.sol";
;

When I switch to using this way

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
pragma abicoder v2;

import "https://github.com/Uniswap/v2-periphery/blob/master/contracts/libraries/UniswapV2Library.sol";
import "https://github.com/Uniswap/v2-periphery/blob/master/contracts/UniswapV2Router02.sol";
import "https://github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IUniswapV2Pair.sol";
import "https://github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IUniswapV2Factory.sol";
import "https://github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/utils/SafeERC20.sol";

I receive this error "ParserError: Source "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol" not found: Deferred import
--> https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/utils/SafeERC20.sol:6:1:
|
6 | import "../IERC20.sol";
| ^^^^^^^^^^^^^^^^^^^^^^^
"

for every import.

:computer: Environment

Remix Version 1.3.4 (1.3.4.825)