
  .containerimg h1{

    font-size: 30px;
    font-weight: 500;
  }

  .containerimg h3{

    font-size: 20px;
    font-weight: 500;
  }

  .containerimg p{

    font-size: 15px;
  }
  
  .chart-container {
    position: relative;
    width: 50%;
    height: 22.5vw;
    margin: auto;
  }
  
  .poll {
    background-color: #fff;
    color: #333;
    width: 100%;
    margin: 1.75rem auto 1rem auto;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    margin-top: 10%;
    height: 30vw;
    
  }
  .poll-heading {
    
    padding: 1rem;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, transparent, rgb(136, 100, 203), transparent) 1;
    text-align: center;
    font-size: 15px;
    
  }
  .poll-body {
    padding: 1rem;
    
    
  }
  .poll-body ul {
    list-style-type: none;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2), 0 1rem 1rem -0.5rem rgba(0, 0, 0, 0.3);
    
  }
  .poll-body li label {
    display: block;
    width: 100%;
    padding: 0.7rem;
  }
  .poll-body li label:hover {
    background-color: #8E2DE2;
    color: white;
    
  }
  .poll-body li:first-child label {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;  
  }
  .poll-body li:last-child label {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;  
  }
  .poll-body li label input[type="radio"] {
    margin-right: 0.5rem;
    
  }
  .poll-body li label input[type="radio"]:checked + span {
    font-weight: bold;
  }
  .poll-footer {
    padding-bottom: 1rem;
    text-align: center;
  }
  .poll-footer button {
    margin-top: 30px;
    background-color: #8E2DE2;
    color: #fff;
    padding: 5px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    outline: none;
    width: 7rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
    
  }
  .poll-footer button:hover {
    background-color: #333;
  }
  .poll-footer button:active {
    background-color: #111;
  }
 
  
  @media(max-width: 1200px) {
    .chart-container {
        width: 100%;
        height: 39vw;
        margin-bottom: 20vw;
      }
      .poll {
        margin-top: 5vw;
        margin-top: 30px;
        width: 100%;
        height: 65vw;
      }
  }
  @media(max-width: 992px) {
    .chart-container {
      width: 90vw;
      height: 38vw;
    }
    .poll {
        margin-top: 100px;
      width: 100%;
      height: 117vw;
    }
  }
  @media(max-width:767px) {
    html {
      font-size: 14px;
    }
    h1 {
      font-size: 1.75rem;
    }
    .chart-container {
      width: 100%;
      height: 48vw;
    }
    .poll {
      width: 100%;
      height: 182vw;
    }
  }

  @media(max-width:430px) {
   
    .chart-container {
      width: 100%;
      height: 48vw;
    }
    .poll {
      width: 100%;
      height: 222vw;
    }
  }

