<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Random Color Generator</title>
    <link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div id="offscreenalert">Copied to clipboard!</div>

    <button class="colors" id="colorButton">Get Random Color</button>

    <div class="input">
        <input class="colors" type="text" name="input color" id="colorInput" placeholder="Your Color" maxlength="7"> 
        <button class="inputButton" id="inputButton" type="button">Enter</button>
    </div>

    <p>Press the hexadecimal to copy the color!</p>
    <p class="hint" id="hint"></p>

    <div id="main" class="main">
        <div id="fullColor">Press the button to get a color!</div>
    </div>

    <script src="index.js"></script>
</body>
</html>