CSS
.buttons{
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
border: 2px solid #0B92B0;
width: 380px;
text-align: center;
border-radius: 8px;
font-size: 24px;
padding: 21.5px 0;
text-decoration: none;
color: #F6F6F6;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
}
.buttons:hover{
background-color: #272727;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 2px solid #F6F6F6;
transition-delay: 0.2s;
transition: 0.5s;
}
####