Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.
.DSRedirectWrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	gap: var(--space-sm);
	width: 75%;
	margin: 0 auto;
}

.DSRedirect {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 0.5px solid #ffffff;
    border-radius: 12px;
    width: calc(100% / 3);
    padding: var(--space-xs);
    margin: var(--space-xxs);
    font-size: var(--font-size-medium);
    text-shadow: #ffffff 0px 0px 1px;
    transition: all 0.3s ease-in-out;
}

.DSRedirect:hover {
    background: #16181d;
}