:root{
  font-size: 62.5%;
  
  --fc-primary: #34355B;
  --bg-phrase: #E4EDF1;

  --bg-body: linear-gradient(45deg, #190361 0%, #bb00ff 100%);
  --btn: #FF9500;
}

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

div.hide{
  display: none;
}

body {
  min-height: 100vh;
  background: var(--bg-body);
  
display: flex;
justify-content: center;
align-items: center;
  
}

main{
  color: var(--fc-primary);
  background-color: #fff;
  text-align: center;
  
  width: min(95%, 430px);

  padding: 4.8rem 6.4rem;
      
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.8);
border-radius: 5px;
}

h1 {
  font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
font-size: 2.4rem;
line-height: 2.9rem;
  margin: 0 auto;
}

div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#screen1 p{
  font-family: 'DM Sans';
font-style: normal;
font-weight: 400;
font-size: 1.5rem;
line-height: 2.0rem;

margin: 1.4rem 0 2rem;
}

img {
margin: 0;
}

#screen1 img {
cursor: pointer;
}

#screen1 img:hover {
-webkit-animation: vibrate-1 3s linear infinite both;
animation: vibrate-1 0.3s linear infinite both;
}

#screen2 p{
  color: #000;
background-color: var(--bg-phrase);
font-family: 'Dancing Script', cursive;
font-weight: 400;
font-size: 2.4rem;
  
  box-shadow: 2px 2px 2px rgba(85, 85, 85, 0.5);
  
  animation: teste 1.5s both;
}

#screen2 button {
font-family: 'DM Sans', sans-serif;
font-weight: 400;

color: #fff;
background-color: var(--btn);

border-radius: 4px;
padding: 1.6rem;
border: none;

cursor: pointer;

transition: filter 300ms;
}

#screen2 button:hover {
filter: brightness(0.9);
}


/* ----------------------------------------------
* Generated by Animista on 2023-1-3 8:25:51
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation vibrate-1
* ----------------------------------------
*/

@keyframes vibrate-1 {
0% {
  -webkit-transform: translate(0);
  transform: translate(0);
}
20% {
  -webkit-transform: translate(-2px, 2px);
  transform: translate(-2px, 2px);
}
40% {
  -webkit-transform: translate(-2px, -2px);
  transform: translate(-2px, -2px);
}
60% {
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
80% {
  -webkit-transform: translate(2px, -2px);
  transform: translate(2px, -2px);
}
100% {
  -webkit-transform: translate(0);
  transform: translate(0);
}
}

@keyframes teste {
0% {
  transform: scale(.4) translateY(400px) ;
}100% {
  transform: scale(1) translateY(0);
}
}