[SHORT PURPOSE STATEMENT]
.large-square-button {
width: 50%;
aspect-ratio: 1 / 1;
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #1e4d2b;
color: #ffffff !important;
font-family: sans-serif;
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
text-decoration: none;
border: 4px solid #ffffff;
border-radius: 0px;
box-sizing: border-box;
cursor: pointer;
box-shadow: 0 10px 20px rgba(30, 77, 43, 0.25);
transition: all 0.3s ease;
}
.large-square-button:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(30, 77, 43, 0.45);
background-color: #15361e;
}
.center-wrapper {
width: 100%;
text-align: center;
padding: 50px 0;
}
