@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

p,
h1,
h2,
h3 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.font-w-title {
    font-weight: 600;
}

.font-w-medium {
    font-weight: 500;
}

.font-w-light {
    font-weight: 300;
    font-size:16px;
}

body {
    background-color: #F5EBE0;
}

.center {
    display: flex;
    justify-content: center;
    width: 100%;
}

body {
    height:100%;
    align-items:center;
    justify-content:center;
    display:flex;
}

.vote-stats {
    display:flex;
}

.vote {
    width:50%;
}

.vote-y {
    text-align:center;
    border-top-left-radius:6px;
    border-bottom-left-radius:6px;
    background-color:#14db49;
}

.vote-n {
    text-align:center;
    border-top-right-radius:6px;
    border-bottom-right-radius:6px;
    background-color:#f5480f;
}

a h2{
    text-align:center;
    padding-top: 6px;
    padding-bottom: 6px;
    width:100%;
    margin-top:12px;
    border-radius:12px;
    cursor:pointer;
    background-color:#f2dfc9;
    color:#000000;
    text-decoration: none !important;
}

.vote-select {
    width:100%;
    padding:12px;
    border-radius:12px;
    margin-top:6px;
    border:none;
}