@keyframes shaky {
  0%{transform: rotate(-5deg);scale:0.9;}
  49%{transform: rotate(-5deg);scale:0.9;}
  50%{transform: rotate(5deg);scale:1;}
  100%{transform: rotate(5deg);scale:1;}
}

body {
  background-color: rgb(243,208,195);
}

h1 {
  font-family: "salted", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 5vh;
}

p {
  font-family: "montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2vh;
}

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.logo {
  animation: shaky 2s infinite;
  animation-delay: 0s;
}

#bebis {
  height: 30vh;
}

.title {

}

.text {
max-width: 90vw;
}
