 @import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
 
@font-face {
    font-family: "Special Elite", system-ui;
    src: url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
}
@font-face {
    font-family: "Special Elite", system-ui;
    src: url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
    font-weight: bold;
} 

body {
    font-family: "Special Elite", system-ui;
  /*16px is a good default web font size but i went a bit smaller for the cute newspaper styling*/
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
    background-color: #f0f0f0;
   color: black;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 350px;
    overflow: hidden;
}



.container {
    
    
    text-align: center;
    padding: 20px;
}

.poll-question {
    font-size: 24px;
    
}

.poll-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    
}

.vote-button {
    background-color: gray;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.vote-button:hover {
    background-color: #0078d4;
}

.results {
    margin-top: 10px;
    padding-top: 10px;
    
}

.results-title {
    font-size: 20px;
}

.results-count {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    
}

.count {
    font-weight: bold;
}