@import url(https://fonts.googleapis.com/css?family=Quicksand:300,regular,500,600,700);

* {
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

body {
    background-image: url('bg.svg');
    background-size: 200vh;
    background-repeat: no-repeat;
    padding-inline: 10px;
    display: flex;
    flex-direction: column;
	/* justify-content: space-between; */
	/* align-items: center; */
}

button {
    background-color: #ffdd80;
    border: 3px solid #1e1e1e;
    box-shadow: #1e1e1e 0px 3px 0px 0px;
    border-radius: 10px;
    padding: 10px;
    padding-inline: 15px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    user-select: none;
    transition: scale 0.1s;
}

button:hover {
    scale: 1.03;
    transition: scale 0.1s;
}

.square-button {
   padding-inline: 12px;
}

.card {
    border: 3px solid #1e1e1e;
    box-shadow: #1e1e1e 0px 3px 0px 0px;
    border-radius: 10px;
    padding: 10px;
    background-image: url('card-blue.svg');
    background-size: 50px;
    font-size: 20px;
}

/* constantly move the background of a card to the right smoothly */
.card {
    animation: moveBackground 7s linear infinite;
}
@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}


button:active {
    box-shadow: #1e1e1e 0px 1px 0px 0px;
    transform: translateY(2px);
}