@import url('https://fonts.googleapis.com/css?family=Karla&display=swap');


/* GENERAL */

* {
  font-family: 'Fira aSns', sans-serif;
  /*font-family: Karla;*/
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}


body {
  margin: 0;
  background-color: #1F1D2B;  
  color: #FDFDFD;
  text-align: center;
  font-size: 18px;
}

div {
  margin: 0;
}

.left {
  float: left;
}

.right {
  float: right;
}

.grey {
  background: #43414D !important;
}

.placeholder {
  height: 24.5%;
}

.container {
  width: 100%;
  height: 100%;
  margin: auto;

}

/*Card Design*/

.card {
  position: relative;
  display: inline-block;
  width: 19%;
  height: 59%;
  border-radius: 26px;
  background-color: #FDFDFD;
  color: #1F1D2B;
  margin-top: 0%;
  margin-bottom: 1%;
  overflow: hidden;
}

.card{
  -webkit-animation:wobble 20s linear infinite;
  -moz-animation:wobble 20s linear infinite;
  animation:wobble 20s linear infinite;
}


*, *::before, *::after {
   box-sizing: inherit;
}

