How can I make the entire field clickable instead of just the text "Google" that opens the website?
.section {
display: flex;
justify-content: center;
}
.alignment {
width: 500px;
}
#back-style {
text-align: center;
color: white;
background-color: #e6e6e6;
line-height: 2.5;
}
<section class="section">
<div class="alignment">
<div id="back-style">
<a href=https://www.google.com">Google</a>
</div>
</div>
</section>