* {
    transition: all 300ms ease-in-out;
}

body {
    height: 100dvh;
    width: 100dvw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding: 0 10%;
}

.empty-icon-container { 
    position: relative;
    text-align:center;
    display:flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Dosis', sans-serif;
    margin-top: -50px;
}

.wprrs-content-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;

    .button {
        position: relative;
        display: flex;
        flex-direction: row;
        column-gap: 15px;
        justify-content: center;
        align-items: center;
        height: fit-content;
        width: fit-content;
        padding: 0px 30px;
        border-radius: 30px;
        border: 1px solid rgb(50, 75, 120);
        color: rgb(50, 75, 120);
        background-color: transparent;
        margin-top: 25px;
        text-decoration: none;
    }

    .button:hover {
        background-color: rgb(50, 75, 120);
        transform: scale(1.1);

        p, svg {
            color: white;
            transition: none !important;
        }
    }

    .button p {
        position: relative;
        font-size: 1rem;
        text-decoration: none;
        color: rgb(50, 75, 120);
        margin: none;
        height: fit-content;
        width: fit-content;
    }

    .button svg {
        position: relative;
        height: 30px;
        width: 30px;
    }
}

.animation-container{
    position:relative;
    display:block;
    text-align: center;
    height: 100px;
    width: 200px;
    border-bottom: solid 2px #333;
    overflow:hidden;
}

.bounce {
    display: inline-block;
    position:absolute;
    bottom:0;
    left:50%;
    width:40px;
    height:40px;
    margin-left: -20px;
    background-size: contain;
    animation: bounceAnim 1s cubic-bezier(.63,.09,.75,.46) infinite alternate,
                spinAnim 3s linear infinite;
}

@keyframes bounceAnim{
  0%, 10% { bottom: 50%; }

  100% { bottom: 0%; }
}
@keyframes spinAnim{
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.pebble1{
  position:absolute;
  top:95%;
  background-color:#333;
  width:10px;
  height:10px;
  border-radius: 20px 20px 0px 0px;
  animation: pebblesAnim 1s linear infinite;
}
.pebble2{
  position:absolute;
  top:97%;
  background-color:#333;
  width:5px;
  height:5px;
  border-radius: 10px 10px 0px 0px;
  animation: pebblesAnim 2s linear infinite;
}
.pebble3{
  position:absolute;
  top:98%;
  background-color:#333;
  width:3px;
  height:3px;
  border-radius: 20px 20px 0px 0px;
  animation: pebblesAnim 3s linear infinite;
}

@keyframes pebblesAnim{
  0% { right: -20%; }
  100% { right: 110%; }
}