*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
#hero{
    width: 100%;
    height: 100vh;
    background-image: url(backroundimg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
.navbar{
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}
.navbar .logo{
    width: 60px;
    margin: 30px 0;
    cursor: pointer;

}
.user{
    display: flex;
    align-items: center;
}
.user img{
    width: 30px;
    margin-left: 50px;
    cursor: pointer;
}
.btn{
    padding: 8px 25px;
    background: transparent;
    outline: none;
    border: 2px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}
.container{
    width: 50%;
    height: 100vh;
    background: rgba(86, 86, 86, 0.3);
    backdrop-filter: blur(10px);
    position: absolute;
    left: 0;
    top: 0;
}
.info{
    width: 550px;
    color: white;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.logo{
    width: 150px;
    margin: 50px;
}
.logoto{
    width: 30px;
    margin-left: 50px;
    cursor: pointer;
    display: flex;
}

.info input{
    width: 50%;
    padding: 8px 10px;
    outline: none;
    border: 2px solid white;
    border-radius: 20px;
    background: transparent;
    color: white;
    font-size: 12px;
}

::placeholder{
    color: #ccc;

}
.test {
    padding: 10px 20px;
    background-color: rgba(86, 86, 86, 0.3);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition-duration: 0.1s;
    backdrop-filter: blur(10px);
}
.test:active{
    background: var(--color);
    color: #050801;
    box-shadow: 0 0 5px var(--color),
      0 0 25px var(--color),
      0 0 50px var(--color),
      0 0 200px var(--color);

}
.vote{
    margin-right: 60px;
    padding: 10px 20px;
    background-color: rgba(86, 86, 86, 0.3);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition-duration: 0.1s;
    backdrop-filter: blur(10px);
}
.news{
    margin-right: 70px;
}
.vote:active{
    background: var(--color);
    color: #050801;
    box-shadow: 0 0 5px var(--color),
      0 0 25px var(--color),
      0 0 50px var(--color),
      0 0 200px var(--color);

}