Is there any chance that someone has a solution for this problem, If you look at my Codepen link there will be a text "Johnny" that I want to hide behind the dark grey div. Is there by any chance a simple solution for this? Thanks!
<!DOCTYPE html>
<html lang="sv">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Johnny Porty</title>
    <!-- LINKED CSS -->
    <link rel="stylesheet" href="./css/main.css">
    <!-- LINKED FONT -->
    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
    <nav id="navbar">
        <h1>NOICE</h1>
        <ul>
            <li><a href="#">Home</a></li>
            <li><a href="#">News</a></li>
            <li><a href="#">Contact <span class="arrow arrow-bottom"></span></a></li>
        </ul>
    </nav>
    <div class="first_div">
        <h1> JOHNNY </h1>
    </div>
    <div class="second_div">
        <h1> STONEY </h1>
    </div>
    
    <!-- LINK SCRIPTS -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="./js/main.js"></script>
</body>
</html>
 
     
     
    