body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.title{
    font-size: 7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    @media (max-width:660px){
        font-size: 3rem;
    }
}

.bg-img {
    width: 100dvw;
    height: 100dvh;
    object-fit: cover;
    /* background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); */
    /* filter: brightness(.2); */
    background-image: linear-gradient(#080b0fcc, #16181ae3 ), url("forte-properties-domain-for-sale.webp");
}

.info {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 10!important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    margin: auto;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    img {
        object-fit: contain;
        max-width: 512px;
        padding: 2rem;
        margin-bottom: 1rem;
        -moz-window-dragging: no-drag;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;
        
    }
    .social {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        @media (max-width: 768px) {
            flex-direction: column;
        }
        a {
            display: flex;
            align-items: center;
            color: #fff;
            text-decoration: none;
            padding: 8px 12px;
            border: 1px solid #fff;
            border-radius: 5px;
            transition: ease-in .1s;
            &:hover {
                border-color: #d5a751;
                color: #d5a751;
                background-color: #191a14;
                /* transition: ease-out .1s; */
                /* padding: 8px 18px; */
            }
            i {
                margin-right: .75rem;
            }
        }
    }
}

p.copy {
    position: absolute;
    margin: auto;
    color: #fff;
    bottom: 1rem;
    text-align: center;
    width: 100%;
    -moz-window-dragging: no-drag;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}