.wichtelContainer {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
    color: rgba(31, 28, 44, 1);
}

.wichtelCard {
    flex:1;
    background-color: #b46a91;
    border-radius: 4px;
    height: calc(100vh - 80px);
    text-align: center;
    vertical-align: center;
    display: flex;
}

.wichtelAction {
    align-self: center;
    vertical-align: center;
    margin: auto;
    padding: 20px;
}

.wichtelAction > .icon {
    font-size: 4em;
}

.description {
    font-size: 3em;
    font-weight: 600;
}

.note {
    margin-top: 60px;
    font-size: 1.8em;
    color: rgba(31, 28, 44, 0.6);
    border-top: 1px solid rgba(31, 28, 44, 0.2);
    padding-top: 10px;
}

.wichtelFooter {
    margin-top: 20px;
    height: 80px;
    display: flex;
    column-gap: 20px;
}

.actions {
    color: #b46a91;
    background-color: #1f1c2c;
    border-radius: 4px;
    flex-grow: 5;
    text-align: center;
    display: flex;
}

.actions a {
    color: rgba(180, 106, 145, 0.8);
}

.actions a:hover {
    color: rgba(180, 106, 145, 1);
}

.actions .icon, .dice .icon {
    margin-right: 6px;
}

.dice {
    background-color: cadetblue;
    flex-grow: 1;
    border-radius: 4px;
    text-align: center;
    display: flex;
}

.dice a {
    color: rgba(255, 255, 255, 0.8);
}

.dice a:hover {
    color: rgba(255, 255, 255, 1);
}

.button {
    align-self: center;
    margin: auto;
}