@charset "utf-8";
/*追加 メイン下の投票状況のボード*/
.vote-status {
    margin: 0 auto;
    background-color: #fff;
    border-radius: .75rem;
    overflow: hidden;
    align-items: center;
    flex-direction: column;
    max-width: 800px;
    width: 100%;
    display: block;
    border: 2px solid #26b2fd;
    box-shadow: 3px 3px 0px #26b2fd;
}
.vote-status>h1 {
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    background: #26b2fd;
    padding: 10px 0;
    margin-bottom: 20px;
}
.vote-status>div {
    margin: 0 15px;
    display: flex;
    justify-content: space-between;
    
}
.vote-status>div>p {
    color: #6a6a6a;
    text-align: center;
    margin: 0 auto;
}
.vote-status>div>img {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}
@media screen and (max-width:480px){
    .vote-status>div {
        display: block;
        text-align: center;
    }
}

@media (max-width:600px) {
    .vote-status {
        margin-top: 15%;
    }
}