
.how-to-modal {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99;
}

.how-to__content {
    position: relative;
    background: whitesmoke;
    border-radius: 5px;
    box-shadow: var(--bs);
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 20px;
}
.how-to__header {
    padding: 10px 20px;
    border-bottom: 2px groove #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.how-to__message {
    padding: 10px 20px;
}
.how-to__cta {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    padding: 10px 20px;
}

.highlight {
    position: relative;
    backdrop-filter: brightness(2.4);
    border-radius: 50%;
    border: 1px solid red;
}
