body{
    background-color: rgb(63, 63, 63);
    font-family: Arial, Helvetica, sans-serif;
    display: table;
    text-align: center;
    min-height: 100vh;
    margin: auto;
    transition: all 0.3s ease;
}
.container{
    min-width: 90vw;
    background-color: white;
    border-radius: 15px;
}
.card{
    color: white;
    background-color: #ff6600;
    border-radius: 15px;
    margin-bottom: 15px;
    min-height: 100px;
    
}
#titleCol{
    margin-top: 15px;
}
.card:hover{
    color: white;
    background-color: #e45b00;
    padding-top:18px;
    cursor: pointer;
    transition: all 0.3s ease;
}
img{
    width: 100px;
    height: 100px;
}