#wrapper {
    position: absolute;
    width: 100%;
    right: .025%;
    margin: auto;
}

body {
    background-color: white;
    transition:.3s;
    -webkit-transition:.3s;
    -moz-transition:.3s;
    -o-transition:.3s;
}

#fruit {
    cursor: pointer;
    width: 300px;
    height: 300px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    background-image: url('fruits/1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 300px;
    position: relative;
    transition:.1s;
    -webkit-transition:.1s;
    -moz-transition:.1s;
    -o-transition:.1s;
}

#fruit:hover {    
    transform: scale(1.05, 1.05);
}

#fruit:active {    
    transform: scale(.95, .95);
}

#count {
    text-align: center;
    font-size: 3em;
    color: white;
    width: 100%;
    height: 0em;
    line-height: 1.5em;
    background-color: rgba(0, 0, 0, .3);
    /*
    text-shadow: 0px 0px 8px #ffffff;
    */
    transition:.3s;
    -webkit-transition:.3s;
    -moz-transition:.3s;
    -o-transition:.3s;
}

#hexval {
    text-align: center;
    font-size: 1.5em;
}

#options {
    text-align: center;
    width: auto;
    margin: auto;
    background-color: rgba(256,256,256,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#opsound {   
    height: 1.5em;
    width: 2.5em;
    line-height: 1.5em;
    margin: auto;
    transition:.3s;
    cursor: pointer;
    background-color: rgba(255, 255, 255, .4);
    -webkit-transition:.3s;
    -moz-transition:.3s;
    -o-transition:.3s;
}

#opcolor {   
    height: 1.5em;
    width: 2.5em;
    line-height: 1.5em;
    margin: auto;
    transition:.3s;
    cursor: pointer;
    background-color: rgba(255, 255, 255, .4);
    -webkit-transition:.3s;
    -moz-transition:.3s;
    -o-transition:.3s;
}

footer {
    margin: 1.5em;
    text-align: center;
}

#promo {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
}
