On lines 22 through 24, a div class is assigned to a print statement. What is going to be changed in the output?



%%html
%%css

<html>
<head>
<style>
    .base {
        text-indent: 10px;
        margin: 15px;
        padding: 15px;
        border-style: solid;
    }
    .buttons {
        text-indent: -10px;
        color: white;
        text-shadow: 1px 1px;
    }
</style>
</head>
<body>
    <h1> Important Notice: </h1> <hr> <br>
    <div class = "base">
        <p> This text is <b> really important,</b> its necessary in order to proceed...</p>
    </div>
    <br>
    <div class = "buttons">
        <p> This is a button to know more: <button id = "button1"> Click here to learn more </button></p>
    </div>
</body>
</html>