/* Style buttons */
.picbutton{
   display: -webkit-flex;
   display: flex;
   height: 50%;
}
.btn {
    background-color: #413F3C; /* Blue background */
    /*border: 1px solid white; /* Remove borders */
    color: white; /* White text */
    /*padding: 1px 4px; /* Some padding */
    /*font-size: 20px; /* Set a font size */
    /*cursor: pointer; /* Mouse pointer on hover */
    width: 3%;
    height: 100%;
    
    
}

/* Darker background on mouse-over */
.btn:hover {
    background-color: #413F3C;
}
