/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 30, 2018, 4:19:36 PM
    Author     : evang
*/
html{
    background: lightsteelblue;
}

body {
    background: linear-gradient(-45deg, lightsteelblue 40%, white) no-repeat;
}

.category{
    font-size: 2em;
}

.best{
    font-size: 1.25em;
    font-weight: bold;
}

#picture{
    max-width: 300px; 
    max-height: 600px; 
    margin-left: 10%;
}

.button{
    cursor: pointer;
    font-size: 2em;
    border: 2px solid grey;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    box-shadow: 0px 10px gray;
    transition-duration: 0.25s;
    background-color: rgba(255,255,255,0.5);
}

.button:active{
    border: 2px solid grey;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 5px gray;
    transform: translateY(5px);
    background-color: rgba(205,205,205,0.75);
}
.card{
    transition: all 0.25s linear;
}
.card:hover{
    transform: scale(1.25);
}

@media screen and (min-width: 768px){
    #picture{
        float: right;
    }
}