.card {
    height: 100%;
}

ol > li::marker {
    font-weight: bold;
}

code {
    color: black;
    background-color: white;
}

.button.press-me-button {
    background-color: rgb(71, 104, 237);
    color: white;
    vertical-align: middle;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.button.press-me-button:hover {
    background-color: rgb(55, 91, 209);
    transform: scale(1.02);
}

.button.press-me-button:focus {
    outline: none;
    box-shadow: 0 0 3px rgba(71, 104, 237, 0.5);
}
