.container {
    font-size: 10pt;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row;
}

#device-panel {
    text-align: center;
    margin-top: 20px;
}

#title {
    margin-top: 50px;
    text-align: center;
    font-family: roboto;
}

#subtitle {
    text-align: center;
    font-family: roboto;
}

/* Button Styling */

.btn-hover {
    position: relative;
    font-family: roboto;
    width: 95px;
    height: 60px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    margin: 10px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 10%;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-transform: uppercase;
}

.btn-hover:hover {
    border: white 1px solid;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-green {
    background-image: linear-gradient(to right, #5eb130, #00883a, #2f9937, #00773b);
    box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}

.btn-hover.color-red {
    background-image: linear-gradient(to right, #e5262b, #9c1d23, #c12228, #7d171f);
    box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}

.btn-hover.color-blue {
    background-image: linear-gradient(to right, #2cb8eb, #0b7ea1, #1899c3, #09627e);
    box-shadow: 0 5px 15px rgba(11, 126, 161, .7);
}

.btn-hover.color-orange {
    background-image: linear-gradient(to right, #f6b042, #f57c00, #e56c0a, #ff8500);
    box-shadow: 0 4px 15px 0 rgba(245, 124, 0, 0.75);
}

.btn-hover.color-gray {
    background-color: gray;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #fdfdfd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

/* Image Container */

.img-container {
    margin-top: 70px;
    max-width: 500px;
    text-align: center;
}

.img-container img {
    max-width: 100%;
}