/* Enchantment container styling */
.enchantment_container {
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.enchantment {
    background-color: #3498DB;
    color: #FFFFFF;
    height: 50px;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}
.enchantment:hover {
    background-color: #2980B9;
}
.enchantment a {
    color: inherit;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: bold;

    position: absolute;
    inset: 0;
    z-index: 1;
}