html{
    background-color: black;
    color: #faebd7;
    font-family: "Inter", sans-serif;
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
.card {
    background: linear-gradient(49deg, #2d4de0 0, #9f71f0 30%, #fc6277 58%, #f8ef6f 95%);
    width: 380px;
    height: 400px;
    border-radius: 12px;
    position: relative;
}
.card-container {
    flex-direction: column;
    display: flex;
    position: absolute;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    background-color: #222222;
    color: #ffffff;
    border-radius: 12px;
    transition: 0.2s ease;
}
.card:hover .card-container {
    border-radius: 10px;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    box-shadow: 1px 1px 10px 10px rgba(87, 87, 87, 0.3);
}
h1{
    margin: 5px;
    background: linear-gradient(49deg, #2d4de0 0, #9f71f0 30%, #fc6277 58%, #f8ef6f 95%);
    background-clip: text;
    color: transparent; 
    display: inline-block; 
}
.display{
    position: relative;
    top: 50px;
    font-size: xx-large;
}
.buttons{
    position: relative;
    top: 100px;
}
.buttons > *{
    background-color: #585858;
    border-style: none;
    border-radius: 5px;
    padding: 10px;
}
.buttons > *:hover{
    background: linear-gradient(49deg, #2d4de0 0, #9f71f0 30%, #fc6277 58%, #f8ef6f 95%);
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 1px 1px 10px 10px rgba(87, 87, 87, 0.3);
}
.clicked{
    padding: 15px;
}
.unclicked{
    padding: 10px;
}
