/*########################*/
/*# Information boxes */
/*########################*/
.info-box {
    display: flex;
    align-items: center;
    background-color: #656565;
    border: 1px solid #dedede;
    border-radius: 5px;
    padding: 10px;
    max-width: 40%;
    margin: 20px auto;
}

.info-box * {
    font-family: Arial, sans-serif;
}

.info-box img {
    width: 2em;
    height: 2em;
    color: #dedede;
    margin: 0.5em;
}

.info-box p {
    font-size: 16px;
    color: #dedede;
    margin: 5px;
}

@media only screen and (orientation: portrait) {
    .info-box {
        display: flex;
        align-items: center;
        background-color: #656565;
        border: 1px solid #dedede;
        border-radius: 5px;
        padding: 10px;
        max-width: 90%;
        margin: 20px auto;
    }
}