body {
    font-family: 'Futura', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    color: rgb(123, 123, 250);
    background-color: rgb(255, 255, 255);
    padding-bottom: 15px;
}

label {
    font-weight: bold;
    color: rgb(123, 123, 250);
}

input {
    font-family: 'Futura', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 5px;
    border-radius: 10px;
    border: none;
    color: black;
    width: 500px;
    border: black 1px solid;
    background-color: rgb(255, 255, 255);
}

a {
    background-color: rgb(229, 226, 255);
    font-weight: lighter;
    padding: 3px;
    border-color: rgb(0, 0, 0);
    border-radius: 8px;
    color: black;
    text-decoration: none;
    
}
textContent {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(255, 255, 255);
    font-size: 20px;
}
h1 {
    font-family: 'Futura', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(123, 123, 250);
    font-size: 40px;
}
th {
    font-family: 'Courier', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(123, 123, 250);
    font-size: 30px;
    text-align: center;
}
button {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 5px;
    border-radius: 50px;
    color: rgb(0, 0, 0);
    background-color: white;
    border: 1px solid rgb(255, 255, 255);
}
.decks {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(255, 255, 255);
    font-size: 20px;
}
img {
    width: 50px;
    height: 50px;

}
#brinkey {
    width: 200px;
    height: 200px;
  animation: rubberBand 3s infinite;
}
@keyframes rubberBand {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.25, 0.75);
    }
    40% {
        transform: scale(0.75, 1.25);
    }
    50% {
        transform: scale(1.15, 0.85);
    }
    65% {
        transform: scale(0.95, 1.05);
    }
    75% {
        transform: scale(1.05, 0.95);
    }
    100% {
        transform: scale(1);
    }
}
.delete-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    height: 10px;
    width: 10px;
}
