@import url('https://fonts.googleapis.com/css2?family=Rancho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orelega+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Orelega One', cursive; */
    font-family: 'poppins',sans-serif;
}
body{
    margin: 0;
    padding: 0;
    min-height: 100vh; 
}
.bg{
    background-image:url("Images/vote2.jpg");
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center;
    background-size: cover;
}
.header{
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: rgb(31, 110, 116);
}
.header ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header ul li{
    list-style: none;
    margin-left: 20px; 
}
.header ul li a{
    text-decoration: none;
    padding: 4px 15px;
    color: #fff;
    font-size: 25px;
    font-family: 'Rancho', cursive;
    border-radius: 20px;
}
.header ul li a:hover{
    background: black;
}
 .cent{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
} 
 section #text{
    color: rgb(138, 14, 14);
    font-size: 8vw;
    text-align: center;
    font-weight: bolder;
    font-family: 'Rancho', cursive;
    /* font-family: 'Bebas Neue', cursive; */
    /* margin-right: 50%; */
    text-shadow:7px 5px 5px rgb(247, 129, 32);
    
}
section #text:hover{
    animation: vote 0.5s ease-out  ;
}
@keyframes vote{
    0%{
          
    }
    50%{
        font-size: 10vw; 
    }
    100%{

    }
}  
 #btn{
    position:absolute ;
    text-decoration: none;
    display: inline-block;
    padding: 8px 30px;
    background:black;
    color: #fff;
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 40px;
    transform: translateY(260px);
}
#btn:hover{
    box-shadow: 5px 5px 10px gray;
} 
.second{
    /* position: relative; */
    padding: 20px;
    background: cadetblue;
    min-height: 100vh;
}
.second h1{
    font-size:35px;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Rancho', cursive;
    text-align: center;
}
.second h2{
    font-size:35px;
    color: #fff;
    font-family: 'Bebas Neue', cursive;
    text-align: center;
    margin-bottom: 10px;
}
.second p{
    font-size: 18px;
    color: #fff;
}
.third{
    background-image: url("Images/Result-bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
}
.third h1{
    font-size:35px;
    margin:20px 20px;
    color: blue;
    font-family: 'Rancho', cursive;
    text-align: center;
    font-weight: 400;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    height: 400px;
    margin: auto;
    text-align: center;
    font-family: arial;
    background: linear-gradient(to right, #26D0CE, #1A2980); 

  }

  .card a {
    padding: 12px;
    color: white;
    background-color: #000;
    text-align: center;
    font-size: 18px;
  }
  .card a:hover {
    opacity: 0.7;
  }


footer{
    padding: 20px;
    margin: 0px;
    background: cadetblue;
}
.sociallogo{
    text-align: center;
    padding: 10px;
}
.sociallogo a{
    margin: 7px;
    color: #111111;
    position: relative;
}
.sociallogo a:hover{
    color: aqua;
}
@media screen and (max-width:620px) {
    section #text{
        font-size: 80px;
    }
}
@media screen and (max-width:480px) {

    .header .logo{
        font-weight: 400;
        font-size: 20px;
    }
    .header ul li{
        margin-left: 5px; 
    }
    .header ul li a{
        padding: 6px 10px;
        font-size: 20px;
    }
    section #text{
        font-size: 60px;
    }
    
}