* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "dinosaur", sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

h1 {
    font-size: 3.5rem;
    color: #B3785D;
}

h2 {
    color: #B3785D;
    font-size: 2rem;
    text-align: center;
}

h3 {
    font-weight: 400;
    text-align: center;
}

.single-chat-infos {
    background-color: #F4BF42;
    padding: 50px 0;
}

.single-chat-infos>div {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.single-chat-infos article {
    width: 100%;
    margin: auto;
}
.single-chat-infos article:nth-child(1) {
    text-align: center;
}

.single-chat-infos article:nth-child(2){
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.single-chat-infos article div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-chat-infos article img {
    width: 70%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin : 50px auto;
    padding: 0;
    border-radius: 50px;
}

.single-chat-infos article svg {
    width: 50px;
    fill: #F4BF42;
    stroke: #B3785D;
    stroke-width: 30px;
}

.svg-color {
    fill: #B3785D !important;
}

.description-section {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.description-section p {
    text-align: center;
}

.svg-div {
    display: flex;
    flex-direction: row !important;
    gap: 5px;
}

.latest-chat {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.latest-chat h2 {
    display: block;
    width: 100%;
}

.latest-chat article {
    width: 70%;
    border-radius: 50px;
    margin: auto;
}

.latest-chat img {
    width: 80%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50px;
    margin : 10px auto;
    padding: 0;
}

.latest-chat article div {
    background-color: white;
    border-radius: 50px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.latest-chat h4 {
    font-size: 1.5rem;
    text-align: center;
}

.latest-chat a {
    display: inline;
    padding: 10px 40px;
    background-color: #F4BF42;
    border: 2px solid #F4BF42;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    text-align: center;
}

.latest-chat a:hover {
    background-color: white;
    color: #F4BF42;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.latest-chat-infos p {
    text-align: center;
}

@media (min-width: 768px) {
    .container {
        width: 720px;
    }
    .single-chat-infos>div {
        flex-direction: row;
    }
    .single-chat-infos article {
        width: 50%;
    }
    .single-chat-infos article:nth-child(2) {
        align-items: flex-start;
    }
    h3 {
        text-align: start;
    }
    h2 {
        text-align: start;
    }
    .description-section p {
        text-align: start;
    }
    .latest-chat article {
        flex: 1 1 31%;
        max-width: 28%;
        aspect-ratio: 1/1;
        overflow: hidden;
        position: relative;
        margin: 0;
    }
    .latest-chat article:hover div {
        top: 0;
    }
    .latest-chat article div {
        transition: all 0.5s ease-in-out;
        border: 2px solid #B3785D;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1/1;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 100%;
    }
    .latest-chat h4 {
        font-size: 1.8rem;
        text-align: start;
    }
    .latest-chat img {
        padding: 0;
        margin: auto;
        width: 100%;
    }
    .latest-chat {
        gap: 50px;
    }
    form {
        align-items: start;
    }
}

@media (min-width: 992px) {
    .container {
        width: 960px;
    }
}