


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    background-color: rgb(22, 21, 21);
}

.cabecalho-com-texto{
    background-color: black;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;

}

.texto-assustador{
    font-weight: bold;
    color: white;
    font-size: 10vh;
}

.blinking{
    animation:blinkingText 0.8s infinite;
}

@keyframes blinkingText{
    0%{     color: #ffffff;    }
    49%{    color: #ffffff; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #ffffff;    }
}

.corpo-main{
    background-color: rgb(22, 21, 21);
    min-height: 100vh;
    padding-bottom: 2rem;
}

.cachorro-funny-centralizado{
    width: min(500px, 90vw);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    margin-bottom: 50px;
    
}

.cachorro-funny-centralizado img{
    width: 100%;
    height: 100%;
    border: 1px solid white;
}

.div-texto-explicativo{
    border-radius: 5px;
    color: white;
    padding: 40px;
    width: min(900px, 92vw);
    margin: 0 auto;
    text-align: justify;
    
}

.div-texto-explicativo h2{
    text-align: center;
    font-size: clamp(2.4rem, 8vw, 10vh);
    
}



.div-texto-explicativo span{
    font-size: clamp(1.3rem, 3.8vw, 2.5em);
    text-transform: uppercase;
    text-shadow: 2px 2px 0px black;
    display: inline-block;
    margin-bottom: 30px;

}


.alumni-sans-inline-one-regular {
  font-family: "Alumni Sans Inline One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.div-link-saber-mais{
  display: flex;
  justify-content: center;
}

.link-saber-mais{
    background-color: rgb(212, 138, 0);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    padding: 10px;
    border-radius: 2px;
}

.link-saber-mais:hover{
    background-color: rgb(163, 106, 0);
    
}

.honk-font {
  font-family: "Honk", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "MORF" 15,
    "SHLN" 50;
}

@media (max-width: 768px) {
  .cabecalho-com-texto {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .texto-assustador {
    font-size: clamp(2rem, 12vw, 3.2rem);
    text-align: center;
    line-height: 1.1;
  }

  .texto-assustador-erro-404 {
    font-size: clamp(2rem, 12vw, 3.2rem);
    text-align: center;
    line-height: 1.1;
    color: red;
  }



  .cachorro-funny-centralizado {
    margin-bottom: 1.5rem;
  }

  .div-texto-explicativo {
    padding: 1rem;
    width: 94vw;
    text-align: left;
  }

  .link-saber-mais {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 0.8rem;
  }
}


