html {
  min-height: 50vh;
  margin: 0;
  padding: 0;
}

body {
  min-height: 50vh;
  margin: 0;
  padding: 0;
  font-family: 'Nunito', 'Lato', sans-serif;
  background-color: rgb(185, 195, 165);
  color: rgb(85,122,70);
  margin-top: 80px;
  overflow-x: hidden;
}

.banner {
    position: relative; 
    display: flex;
    width: 100%;
    height: 25vh;
    background-color: rgb(55, 84, 59);
    min-height: 100px;
}

.banner img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    filter: blur(8px);
}

.criador {
  position: absolute;
  bottom: -100px;             /* metade do tamanho para deixar metade pra fora */
  left: 10%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgb(255, 230, 179);
  background-size: cover; /* Preenche a div */
  background-position: center; /* Centraliza */
  background-repeat: no-repeat;
  outline: 4px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.infocriador {
  position: absolute;
  bottom: -70px;             /* metade do tamanho para deixar metade pra fora */
  left: 30%;
  transform: translateX(-50%);
  width: auto;
  color:white;
  background-color: rgb(55, 84, 59);
  padding: 10px;
  border-radius: 10px;
  min-width: 300px;
  max-width: 350px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.infocriador h1 {

}

.infocriador p {
   width: auto;
   display: flex;
   align-items: center;
}
.area {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.exibirvideo {
    width: 90%;
    background-color: rgb(220, 220, 220);
    margin-top: 120px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.projetoscriador {
    border: 2px dashed #8e8e8e;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/*Área de Projetos*/
    .projeto {
    width: 350px;
    min-height: 400px;
    border-radius: 10px;
    height: auto;
    background-color: rgb(72, 91, 72);
    color: #e1e1dd;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    border: white 3px solid;
    box-shadow: 0 4px 12px rgb(33, 40, 33);
}

.projeto h1 {
    font-size: 23px;
    min-height: 50px;
}

.projeto p {
    font-size: 15px;
    min-height: 50px;
}

.projeto .navbotao {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.projeto .navbotao button {
    font-size: 15px;
    min-width: 240px;
    height: 40px;
    border-radius: 10px;
    background-color: #e1e1dd;
    border: none;
    box-shadow: 0 4px 12px rgb(33, 40, 33);
}

.projeto video {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    max-width: 900px;
    border: white 3px solid;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.projeto img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    max-width: 900px;
    border: white 3px solid;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.info {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}
.info .imagem {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    border-radius: 100px;
    border: rgb(85,122,70) solid 3px;
}

a {
    text-decoration: none;
    color: inherit;        
}

@media (max-width: 1400px) {
    .infocriador {
        left: 35%;
    }
}


@media (max-width: 1300px) {
    .infocriador {
        left: 40%;
    }
}

@media (max-width: 1000px) {
    .infocriador {
        left: 50%;
        bottom: -50px;
    }

    .infocriador h1 {
        font-size: 20px;
    }

    .infocriador p {
        font-size: 15px;
    }

    .criador {
        width: 150px;
        height: 150px;
        bottom: -75px; 
        left: 15%;
    }
}

@media (max-width: 768px) {
    .infocriador {
        left: 75%;
        min-width: 150px;
        max-width: 200px;
    }

    .infocriador h1 {
        font-size: 20px;
    }

    .infocriador p {
        font-size: 15px;
    }

    .criador {
        width: 150px;
        height: 150px;
        bottom: -75px; 
        left: 25%;
    }

    .exibirvideo h1 {
        font-size: 25px;
    }

    .projeto h1 {
        font-size: 20px;
    }
}

@media (max-width: 350px) {
    .infocriador {
        left: 75%;
        min-width: 120px;
        max-width: 150px;
    }

    .infocriador h1 {
        font-size: 15px;
    }

    .infocriador p {
        font-size: 10px;
    }

    .criador {
        width: 125px;
        height: 125px;
        bottom: -65px; 
        left: 25%;
    }
}