body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111111;
    margin: 0;
    padding: 0;
    color: rgb(235, 235, 235);
}

.Main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.Container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    height: 80px;
    border: 1px solid rgba(194, 194, 194, 0.473);
    border-radius: 5px;
    position: relative;
}

.Container .Texts {
    margin-left: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.Containers .Texts svg  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-right: 40px
}

.Container a {
    font-size: 17px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

p {
    margin: 0;
    color: rgb(200, 200, 200);
}

.Containers {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.Container.voted {
  border: 1px solid rgba(125, 255, 164, 0.473);
}

.logo {
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
}

.logo a {
  display: inline-flex;
  align-items: center;
}

.logo p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  margin-left: 10px;
}

.logo svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.navbar {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid rgba(194, 194, 194, 0.473);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: rgb(200, 200, 200);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.6s;
}

.nav-links a:hover {
    color: white;
}