*{
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
}

:root{ 
  --color-icons: #3f82af;
  --body-color: #F9F7F7;
  --top-color: #364F6B;
  --text-whcolor: #F9F7F7;
  --text-Dcolor: #1E1E1E;
  --card-color: #e7e7e7;
  --btn-CTA: #ccff00;
  --btn-CTAhover: #99bd0b;

}

html {
    scroll-behavior: smooth;
}

.navbar2 {
    padding-top: 1rem;
    font-weight: 800;
    min-height: 70px;
    display: flex;
    align-items: end;
    justify-content: space-around;
    transition: 0.3s;
    position: fixed;
    z-index: 20;
    width: 100vw;
}

.navbar2 a:hover {
    opacity: 0.7;
    scale: 1.1;
    transform: rotate(-5deg);
}


#title{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.posts{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;

}

.teste {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 90vw;
    padding: 2rem;

}

.carrossel{
    margin: 10rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

}

.img-carrossel{
    display: flex;
    justify-content: center;
    border: solid 10px var(--btn-CTA);
}

.imgs{
    width: 15rem;
    background-image: url(/images/bg\ Title.png);
}


@media (max-width:1131px) {

.imgs{
    overflow: hidden;
    width: 10rem;
}

.carrossel{
    margin: 10rem 1rem 0;

}


.img-carrossel{
    display: flexbox;
    flex-wrap: wrap;
    border: none;
}

}