body {
    margin: 0px;
    background-color: #4c2f0f;
}

p {
    margin: 0;
    text-align: center;
    font-size: 1.3em;
}

.block-sm {
    max-width: 500px;
    width: 100%;
    height: auto;
    padding-bottom: 3em;
    margin: 40px auto 80px auto;
    background-color: #8b5f2c;
    border-radius: 25px;
}

.card {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 50px;
    border-radius: 25px;
    overflow: hidden;

    img {
        width: 100%;
        height: 120%;
        object-fit: cover;
    }
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #8b5f2c 0%, #00000000 50%);
}
.overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(1px);
}

.content {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    
    h1 {
        margin: 0;
        font-size: 2em;
    }
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 60px;
    margin: 10px auto;
    background-color: #b37835;
    color: #fff;
    text-decoration: none;
    font-size: 1.3em;
    border-radius: 25px;

    img {
        position: absolute;
        left: 5px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }
    span {
        pointer-events: none;
    }
}
.btn:hover {
    background-color: #a66d2c;
    color: #fff;
}