html {
    background: rgba(0,0,0,.01)
}

body {
    width: 100%;
    height: 90px;
    position: static;
    background: navy;
    background: linear-gradient(#000,navy);
    background-repeat: no-repeat;
    color: #fff;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-weight: 500;
    border-radius: 5px
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter:none)) {
    body {
        backdrop-filter:blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: rgba(0,0,80,.8);
        background: linear-gradient(rgba(0,0,68,.8),rgba(0,0,136,.8));
    }
}

.wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    cursor: pointer
}

.forSale {
    font-size: 1.2rem;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 2px
}

.forSale img {
    margin-right: 10px
}

.boxes {
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    padding: 0 20px;
    position: absolute;
    justify-content: space-between
}

.box {
    height: 100%;
    display: grid;
    place-items: center
}

.textWrapper {
    bottom: 0;
    width: 100%;
    height: 30px;
    z-index: 100;
    position: absolute
}

.textHolder {
    position: relative;
    width: 100%;
    height: 100%
}

.text {
    bottom: 0;
    font-size: 16.5px;
    position: absolute;
    margin-left: .6rem;
    margin-bottom: .35rem
}

.right {
    right: 0;
    margin-right: .6rem
}

.overlayLink {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2
}
