@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
body {
    background-color: #090909;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
img.image-prop {
    height: 500px;
}
.image {
    position: fixed;
    bottom: 0;
}
.principal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40%;
    margin-top: 5%;
}
.titulo {
    font-size: 28px;
    color: white;
    text-align: center;
}
.on {
    color: #00EB76;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.off {
    color: #f30e53;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.online {
    width: 10px;
    height: 10px;
    background: #00EB76;
    border-radius: 50%;
    animation: online 1.5s infinite ease-in-out;
    transition: 0.40s;
}
.offline {
    width: 10px;
    height: 10px;
    background: #f30e53;
    border-radius: 50%;
    animation: online 1.5s infinite ease-in-out;
    transition: 0.40s;
}
@keyframes online {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.button-atendente {
    border: none;
    font-size: 25px;
    background-color: #6d4bee;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    margin: 15px 0px;
    width: 100%;
    transition: 0.40s;
}
.button-atendente:hover{
    background-color: #3a287e;
}
.button-manual {
    border: none;
    font-size: 25px;
    background: #3c3c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    margin: 15px 0px;
    width: 100%;
    transition: 0.40s;
}
.button-manual:hover{
    background-color: #181818;
}
a {
    text-decoration: none;
    display: contents;
}
@media only screen and (max-width: 600px){
    .principal{
        width: 90%;
        margin-top: 25%;
    }
    .button-atendente {
        font-size: 20px;
    }
    .button-manual {
        font-size: 20px;
    }
    .titulo{
        font-size: 20px;
    }
}

/* Notbook */
@media only screen and (max-width: 1500px) {
    img.image-prop {
        height: 400px;
    }
}

/* Tablet - entre 768px e 1024px */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    img.image-prop {
        height: 350px;
    }
}

/* Celular - até 767px */
@media only screen and (max-width: 767px) {
    img.image-prop {
        height: 350px;
    }
}