@import url('https://fonts.cdnfonts.com/css/amateur-dirty');
@import url('https://fonts.cdnfonts.com/css/ww-digital');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*border: 1px solid red;*/
}

body{
  font-family: "Poppins", sans-serif;
  background-color: #1b1b1b;
  overflow-y: hidden;
}

header{
  display: flex;
  flex-direction: column;
  height: 25vh;
  margin: 30px;
}

.img{
  background-image: url("wonder_1671858182588.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  
  height: 100px;
  width: 100px;
  border-radius: 20px;
}

.title h1{
  padding: 2px 0;
  font-family: 'Amateur Dirty', sans-serif;
  color: #7688bc;
  font-weight: 400;
  letter-spacing: 2px;
}

.title p{
  text-align: center;
  color: #fff;
  font-family: 'WW Digital', sans-serif;
  width: 23ch;
  animation: typing 2s steps(22), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
}

.btnA{
  padding: 5px 15px;
  margin-top: 20px;
  background: transparent;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  color: #f1f1f1;
  transition: all .2s ease-in-out;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
}
.btnA:hover{
  background-color: #bebebe;
  border: 1px solid #f1f1f1;
  color: #000;
}

section{
  height: 60vh;
  overflow: hidden;
  overflow-y: scroll;
  display: grid;
  justify-content: center;
}

.btn{
  padding: 15px 50px;
  display: flex;
  border: .5px solid #4c80b0;
  transition: all .2s ease-in-out;
  margin: 10px 0;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
}

.btn:hover{
  background-color: #4c80b0;
  border: none;
  transform: skewX(0deg);
}

.btn h1{
  font-size: 15px;
  text-align: start;
  color: #fff;
  opacity: 0.8;
  letter-spacing: 1px;
}

.btn p{
  opacity: 0.2;
  font-size: 12px;
  font-family: 'WW Digital', sans-serif;
  color: #fff;
}

.social{
  padding: 0 10px;
}

.fa-twitter{
  font-size: 30px;
  padding: 10px;
  background-color: #3791ff;
}

.fa-square-instagram{
  font-size: 57px;
}

.fa-triangle-exclamation{
  font-size: 52px;
  opacity: 0.5;
}

.over:hover{
  background-color: #fff;
  opacity: 0.3;
  transform: skewX(-15deg); 
  /*this needs to be removed if you want the button to have the SKEW HOVER EFFECT*/
}

@keyframes typing {
  from {
    width: 0
  }
}
    
@keyframes blink {
  50% {
    border-color: transparent
  }
}