* {
    box-sizing: border-box;
}

body {
    font-family: "Reddit Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #1c1c1c;
    color: white;
}

.info-inicial .img-background {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-background img {
    width: 150px;
}

.text-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-element {
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    bottom: 25px;
    right: 25px;
    color: #fff;
    border-radius: 94.86px;
    z-index: 10;
    background-image: url(../assets/whatsapp-icon.svg);
}

@media only screen and (max-width: 800px) {

    .info-inicial h1 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 900;
    }

    .info-inicial p {
        text-align: center;
    }
    
    .info-inicial .img-background {
        display: none;
    }
}