https://i.sstatic.net/iRF8l.png
My issue is with creating two bordered links, but for some reason, there are extra borders showing up that I did not intend to include. The problem seems to be related to the bookings link, although I have checked the code and confirmed that the link was only input once.
EDIT: To clarify my explanation, I have added another picture highlighting the rectangles causing the problem.
https://i.sstatic.net/sBgaX.png
I suspect that the issue lies within the divs, as all my attempted solutions thus far have failed.
HTML:
<div class="buttons">
<div class="button1">
<a href="explore.html">EXPLORE</a>
</div>
<div class="button2">
<a href="booking.html">BOOKINGS</a>
</div>
</div>
CSS:
.button1 {
padding: 0 0 29px 50px;
letter-spacing: 1px;
text-transform: uppercase;
padding: 0 0 29px 0px;
display: inline-block;
float:left;}
.button2 {
padding: 0 0 29px 0px;
letter-spacing: 1px;
text-transform: uppercase;
padding: 0 0 29px 0px;
display: inline-block;}
.buttons a {
background-color: ffaaaa;
color: #832430;
border: 2px solid #832430;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;}
.buttons a:hover{
background-color: #832430;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline;}