
.rubik-font {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

body {
  height: 100%;
  background-color: #000020;
}

*{
  margin: 0;
  font-family: "Rubik";
}

.header { 
  display: flex;
  background: #000020; 
  height: 75px;
  align-items: center;
  justify-content: space-between;
  
  #logo {
    float:left;
    margin:0;
    width: 15%;
    margin-left: 50px;
  }
  
  #navlist {
    float: center;
    
    li {
    display: inline;
    list-style-type: none;
    padding-right: 2rem;
    }
      a{
        line-height: 50px;
        height: 75px;
        font-size: 1.5vw;
        text-decoration: none;
        font-family: "Rubik";
        color: rgb(255, 255, 255);
      }
      a:active{
        text-decoration: none;
        background: linear-gradient(to right, #ffbd23, #fd7201);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
      }
      a:hover{
        text-decoration: none;
        background: linear-gradient(to right, #ffbd23, #fd7201);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
      }
      a:visited{
        text-decoration: none;
      }
    
  }
.btns{
  display: flex;
  align-items: center;
  justify-content: end;
  height: fit-content;
  width: fit-content;
}

.login {
  font-size: 20px;
  margin-right: 10px;
  height: 50px;
  width: 100px;
  display: block;
  line-height: 50px;
  background: linear-gradient(90deg,#ffbd23 3%, #fd7201 53%,#ffbd23 97%);
  text-align: center;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255,255,255,0.001);
  transition: 0.5s all;
  position: relative;
  cursor: pointer;
  background-size: 200% 100%;
  background-position: left center;
}

.login:before {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(90deg, #ffbd23 3%, #fd7201 47%,#ffbd23 97%);
    transition: 0.5 all;
    z-index: -1;
    background-size: 200% 100%;
    background-position: left center;
}

.login:after {
    background: rgb(24,24,24);
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: -1;
}

.login:hover,
.login:hover:before {
  background-position: right center;
}

  .signup{
    display: inline-block;
    position: relative ;
    text-align: center;
    line-height: 50px;
    color: black;
    text-decoration: none;
    z-index: 9;
    height: 50px;
    width: 100px;
    border-radius: 10px;
    font-size: 20px;
    margin-right: 50px;
    background: linear-gradient(to right, #ffbd23, #fd7201);
  } 
  
  .signup-helper{
    position: absolute;
    height: 50px;
    width: 100px;
    margin-left: -15px;
    z-index: -1;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s linear;
    background: linear-gradient(to right, #fd7201,#ffbd23);
  }
  .signup:hover .signup-helper{
    opacity: 1;
}

.signout{
  display: inline-block;
  position: relative ;
  text-align: center;
  line-height: 50px;
  color: black;
  text-decoration: none;
  z-index: 9;
  height: 50px;
  width: 100px;
  border-radius: 10px;
  font-size: 20px;
  margin-right: 50px;
  background: linear-gradient(to right, #ffbd23, #fd7201);
} 

.signout-helper{
  position: absolute;
  height: 50px;
  width: 100px;
  margin-left: -10px;
  z-index: -1;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s linear;
  background: linear-gradient(to right, #fd7201,#ffbd23);
}
.signout:hover .signout-helper{
  opacity: 1;
}
}
.poster {
  background-color: #000020;
  display: flex;
}


#votepost{
  width: 29vw;
  position: relative;
  float: right;
  margin-top: -350px;
  margin-right: 25vw;
  filter: brightness(0.9);
}

.content h3{
  position: absolute;
  left: 69%;
  top: 15%;
  font-size: 2vw;
  text-align: center;
}

.votebtn{
  display: inline-block;
  position: absolute;
  top: 84%;
  left: 80%;
  text-align: center;
  justify-content: center;
  line-height: 70px;
  color: black;
  text-decoration: none;
  z-index: 9;
  height: 65px;
  width: 150px;
  border-radius: 10px;
  font-size: 24px;
  margin-right: 50px;
  background: linear-gradient(to right, #ffbd23, #fd7201);
} 

.votebtn-helper{
  position: absolute;
  height: 65px;
  width: 150px;
  margin-left: -13px;
  z-index: -1;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s linear;
  background: linear-gradient(to right, #fd7201,#ffbd23);
}
.votebtn:hover .votebtn-helper{
  opacity: 1;
}

.content{
  width: 100%;
  height: 100%;
  color: white;
  background-color: #000020;
  position: relative;
  top:55vh;
}
.content .par{
  margin-top: 10px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  height: 100%;
  width: 45vw;
  padding-left: 25px;
  font-family: Arial;
  letter-spacing: 1.2px;
  line-height: 35px;
  font-size: 16px;
}

.content h1{
  font-size: 20px;
  padding-left: 20px;
  letter-spacing: 2px;

}

.content img{
  margin-top: 20px;
  margin-left: 20px;
  width: 20vw;
}

.cn{
  margin-top: -10px;
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  width: 160px;
  height: 50px;
  z-index: 9;
  text-decoration: none;
  color: #000000;
  background: linear-gradient(to right, #ffbd23, #fd7201);
  margin-left: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: .4s ease;
}
.cn-helper{
  position: absolute;
  width: 160px;
  height: 50px;
  z-index: -1;
  margin-left: -40px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s linear;
  background: linear-gradient(to right, #fd7201,#ffbd23);
}
.cn:hover .cn-helper{
  opacity: 1;
}

.content span{
  color: orange;
  font-size: 60px;
}


.action {
  position: relative;
  margin-right: 30px;
  z-index: 10;
}

.action .profile {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}

.action .profile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: white;
}

.action .menu {
  position: absolute;
  top: 120px;
  right: -10px;
  padding: 10px 20px;
  background: #fff;
  width: 200px;
  box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
}

.action .menu.active {
  top: 80px;
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.action .menu::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 28px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
  z-index: 10;
}

.action .menu h3 {
  width: 100%;
  text-align: center;
  font-size: 18px;
  padding: 20px 0;
  font-weight: 500;
  color: #555;
  line-height: 1.5em;
  z-index: 10;
}

.action .menu h3 span {
  font-size: 14px;
  color: #cecece;
  font-weight: 300;
  z-index: 10;
}

.action .menu ul li {
  list-style: none;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  z-index: 10;
}

.action .menu ul li img {
  max-width: 20px;
  margin-right: 10px;
  opacity: 0.5;
  transition: 0.5s;
  z-index: 10;
}

.action .menu ul li:hover img {
  opacity: 1;
  z-index: 10;
}

.action .menu ul li a {
  display: inline-block;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: 0.5s;
  z-index: 10;
}

.action .menu ul li:hover a {
  background: linear-gradient(to right, #ffbd23, #fd7201);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  z-index: 10;
}

.topnav {
  overflow: hidden;
  background-color: #000020;
  position: relative;
  display: none;
}

.topnav img{
  width: 40%;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background: linear-gradient(to right, #ffbd23, #fd7201);
  color: black;
}

.active {
  background-color: #000020;
}

.mobilecontent{
  display: none;
}

.posterandvotecontainer{
  display: flex;
  flex-direction: row;
  height: 30vh;
  width: 100%;
  justify-content: center;
}

.votecontainer{
  display: flex;
  flex-direction: column;
  height: 40vh;
}

@media screen and (max-width:1250px) {
}

@media screen and (max-width:1000px) {
  .header{
    display: none;
  }
  .topnav{
    display: block;
  }
  .topnav img{
    width: 200px;
    margin-left: 30px;
  }
}

@media screen and (max-width:800px) {
  .header{
    display: none;
  }
  .poster .votebtn{
    display: none;
  }
  .poster video{
    margin-top: -80px;
  }
  .content{
    display: none;
  }

  .mobilecontent{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
  }
  .footer{
    display: none;
  }
  .votebtn{
    margin-top: -300px;
    width: 100px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    margin-left: -40px;
  }

  .votebtn-helper{
    width:100px;
    height: 40px;
  }
  #votepost{
    width: 250px;
    height: 100%;
    margin-right: 30px;
  }
  .h3{
    color: white;
    font-size: 18px;
    text-align: center;

  }
  .topnav img{
    margin-left: -10px;
  }
  .par{
    color: white;
    position: relative;
    margin-top: -300px;
    font-size: 18px;
    z-index: 10;
    position: relative;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
  }
  .cn{
    height: 30px;
    padding: 10px;
    line-height: 30px;
  }
  .posterandvotecontainer{
    width: 100vw;
    margin-top: 550px;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .votecontainer{
    margin-top: -400px;
    justify-content: center;
    align-items: center;
  }
}
         




