@font-face {
    font-family: "smalle";
    src: url("https://whiterain.neocities.org/fonts/smalle.ttf") format("truetype");
}

body {
    font-family: 'smalle', sans-serif;
    background-color: #111A2B;
    color: white;

    margin: 0 16px 16px 16px;
    line-height: 1;
    width: 75%;
    
    cursor: url('images/sc.png'), auto;
    
    overflow-y: scroll;
    overflow-x: hidden;
}

a {
    color: #979DD1;
}

a:hover, button:hover{
    cursor: url('images/hc.png'), auto;
}

.lala {
  font-family: "smalle";
  font-size: 64px;
}

.wiggle {
  /*animation: wiggle-anim 4s linear infinite;
  animation-timing-function: step-end; */
  filter: url('#squiggly');
}

@keyframes wiggle-anim {
  0% {
    filter: url('#squiggly-0');
    background: red;
  }
  33.3% {
    filter: url('#squiggly-1');
    background: blue;
  }
  66.6%, 100% {
    filter: url('#squiggly-2');
    background: green;
  }
}

.btns{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 90%;
    row-gap: 1vh;
    
    overflow: auto;
}
.btns-inside{
    display: flex;
    column-gap: 1vh;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 1vh;
}
.btns-inside a{
    border-bottom: 0;
    transition: transform .2s;
}
.btns-inside a:hover{
    transform: scale(1.2);
}
.my-btn a:hover{
    transform: scale(1);
}