* {
	animation: fadeIn ease 1s;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

input {
    color: black;
}

body {
    background-color:black;
}

@keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

#nav {
    background: #ba0f97;
    padding: 0% 0% 0%;
    border-radius: 10px;
}

.nav-item-left {
    margin-left: 2%;
}

.nav-item {
    background: #ba0f97;
    padding: 1.3%;
    border: none;
}

.nav-item:hover {
    background: #333333;
    color: white;
    cursor:pointer;
    border: none;
    transition: linear 0.4s;
}

#participation-template {
    margin-top: 2%;
}

#claim-template {
    margin-top: 2%;
}

#vote-template {
    margin-top: 2%;
}

#auto-stake-template {
    margin-top: 2%;
}

#participate-button {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 10px;
    padding: 1% 6% 1%;
    border: none;
    background: #ba0f97;
    color:white;
}

#participate-button:hover {
    color: #ba0f97;
    background: #333333;
    cursor:pointer;
    border: 1px solid #ba0f97;
    transition: linear 0.1s;
}

#claim-button {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 0px 10px 10px 0px;
    padding: 1% 6% 1%;
    border: none;
    background: #ba0f97;
}

#claim-button:hover {
    color: white;
    background: #333333;
    cursor:pointer;
    transition: linear 0.5s;
}

#vote-button {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 0px 10px 10px 0px;
    padding: 1% 6% 1%;
    border: none;
    background: #ba0f97;
}

#vote-button:hover {
    color: white;
    background: #333333;
    cursor:pointer;
    transition: linear 0.5s;
}

#withdraw-button {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 0px 10px 10px 0px;
    padding: 1% 6% 1%;
    border: none;
    background: #ba0f97;
}

#withdraw:hover {
    color: white;
    background: #333333;
    cursor:pointer;
    transition: linear 0.5s;
}

input {
    padding: 1% 6% 1%;
    border: none;
    border-radius: 10px 0px 0px 10px;
}

#vote-amount-index {
    border-radius: 0px;
}

#logo-img {
    width:30%;
}