html,
body {
    margin: 0;
    padding: 0;
    font-family: "EB Garamond", serif;
    background-color: white;
    height: 100%;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

/* Custom Button Style */
.button {
    position: relative;
    padding: 0px 24px;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 45px;
    min-width: 110px;
    overflow: hidden;
    vertical-align: middle;
}

.button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    background: #CAB29F;
    width: 45px;
    height: 45px;
    transition: width 0.3s ease;
    z-index: 0;
}

.button .label {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #0c0041;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    background: none;
}

.button .arrow {
    margin-left: 10px;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    color: #0c0041;
}

.button:hover:before {
    width: 100%;
}

.button:active {
    transform: scale(0.97);
}

footer {
    margin-top: 50px;
    padding: 20px;
    background: #B3ADB1;
    text-align: center;
}

footer p {
    color: white;
}