:root {
    background-color: #f7f7f3;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #3a3a39;
    text-decoration: none;
    font-weight: 500;
    position: relative;

    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        top: 0;
        width: 100%;
        background-color: #cbc2206c;
        transform: scaleX(0);
        transition: transform 0.2s ease-in-out;
        transform-origin: bottom left;
        z-index: -1;
    }

    &:hover::after {
        transform: scaleX(1);
    }
}

.hero {
    padding: 2rem;
}

.hero h1 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
}