.titulo{
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: black;
    color: white;
}
.main-container{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    min-height: 100%;
    padding: 1px;
    margin: 1px;
}
.container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: auto;
    width: 200px;
    margin: 1px;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.384);
    background-color: rgb(33, 33, 75);
    color: rgb(255, 255, 255);

}
.buttons{
    display: flex;
    flex-direction: column;
    font-size: 15px;
    padding: 3px;
    margin: 3px;
}
.status {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 90px;
    margin: 1px;
    font-family: Arial, sans-serif;
    font-size: 24px;
    background-color: blue;
    color: white;
}
.online {
    background-color: green;
}
.offline {
    background-color: red;
}

.menu{
    background-color: white;
    color: black;
    font-size: 18px;
    margin: 5px;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 40px;
    width: 130px;
    padding: 3px;
    border-radius: 30px;
}

p{
    margin: 12px;
}
