@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.divPai {
  width: 100%;
  height: 100vh;
  background-color: rgb(6, 6, 39);
  position: relative;
}

.divGradient {
  width: 100%;
  height: 100vh;
  display: flex;
  background-color: rgb(2, 17, 18);
}

.esquerda {
  width: 50%;
  height: 100vh;
  background: conic-gradient(
    from 90deg at 50% 75%,
    #101010 0deg,
    #959595 120deg,
    #fdfdfd 360deg
  );
  mix-blend-mode: color-dodge;
  transform: rotateX(180deg);
}

.direita {
  width: 50%;
  height: 100vh;
  background: conic-gradient(
    from 270deg at 50% 25%,
    #101010 0deg,
    #959595 120deg,
    #fdfdfd 360deg
  );
  mix-blend-mode: color-dodge; 
}

.sobreposicao {
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #000000 0%, rgba(13, 13, 13, 0.00) 25%, #000000 100%);
    position: absolute;
    top:0;
}

.conteudo {
    display: flex;
    flex-direction: column;
    align-items:center;
    position:absolute;
    top:28%;
    left: 50%;
    transform: translateX(-50%);
    mix-blend-mode: color-dodge;
}

.conteudo h1 {
    color:rgb(195, 195, 195);
    text-align: center;
    font-size: 4vw;
    font-family: "roboto", sans-serif;
    font-weight: 600;
    width: 90%;
}

.conteudo p {
    font-size: 18px;
    color:rgba(255, 255, 255, 0.8);
    font-family: "poppins", sans-serif;
    font-weight: 300;
    width: 580px;
    text-align: center;
}

.divBotao {
    display: flex;
    gap:28px;
    padding-top: 32px;
}

.divBotao button{
    font-size: 16px;
    padding: 14px 18px;
    border-radius: 28px;
    border: none;
    color:rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    font-family:"Poppins";
    font-weight: 400;
}

.divBotao .verProjetos {
    background-color: rgba(255, 255, 255, 0.282);
    color:rgba(255, 255, 255, 0.8)
}


