@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
 background: rgb(15, 23, 42);
 color: white;
 font-family: 'Inter', sans-serif;
 margin: 0;
 padding: 0;
}

* {
  box-sizing: border-box;
}

a {
  color: white;
}

.main-menu {
  display: flex;
  justify-content: center;
  background-color: white;
}

.main-menu ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
}

.main-menu ul li {
  list-style: none;
  color: rgb(15, 23, 42);
}

.main-menu ul li a {
  color: rgb(15, 23, 42);
}

h1 {
  font-size: 48px;
  background-image: linear-gradient(to right, rgb(199, 210, 254), rgb(56, 189, 248), rgb(199, 210, 254));
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  font-weight: 300;
  font-family: 'Lexend', sans-serif;
  padding: 20px;
  text-align: center;
}

.content {
  display: flex;
  justify-content: center;
}

.content div {
  width: 100%;
  max-width: 1100px;
  border-radius: 15px;
  background: white;
  color: rgb(15, 23, 42);
  padding: 20px;
}

.content div a {
  color: rgb(15, 23, 42);
}

button {
  background: rgb(15, 23, 42);
  border: none;
  color: white;
  border-radius: 5px;
  padding: 8px 16px;
}

input {
  border: solid 1px #ccc;
  color: gb(15, 23, 42);
  border-radius: 5px;
  padding: 8px 16px;
  outline: none;
}

h3 {
  margin: 0;
}

.alert {
  color: orange;
  font-weight: 700;
}

.alert-small {
  font-size: 12px;
  text-transform: uppercase;
}

.votes-list {
  margin: 50px 0;
}

.votes-list li {
  margin: 15px 0;
}

.card-final-value {
  font-size: 42px;
  color: orange;
  font-weight: 700;
}

.username {
  color: orange;
  font-weight: 700;
}