﻿body {
}

.option { /* Option style */
    width: 15%;  
}

    .option:hover { /* Made darker from MyInterests to highlight better when hover over 'Voted' option */
        background-color: rgba(100,211,234,0.8);
    }

div.voted {
    background-color: #ffffff;
   
}

/* Mobile styles */
@media screen and (max-width:800px)
{
    .option
    {
            margin-top:10px;
        width:95%;
    }
}


