body{
    background: rgb(153, 153, 153);
    height: 100%;
    margin: 0px;
    position: absolute;
    width: 100%;
}

.container-options{
    background: linear-gradient(to left, rgb(0, 102, 102) 15%, rgb(179, 255, 255));
    box-shadow: 0px 45px 10px black;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
    position: fixed;
    align-items: center;
    width: 250px;
}

.btn-options{
    align-items: center;
    background-color: rgba(179, 255, 255, 0.3);
    border-radius: 20px;
    color: black;
    display: flex;
    font-size: 25px;
    height: 180px;
    justify-content: center;
    text-decoration: None;
    width: 200px;
}

.btn-account:hover{
    background: rgb(0, 102, 102);
    color: rgb(179, 255, 255);
}

.btn-clients:hover{
    background: rgb(0, 102, 102);
    color: rgb(179, 255, 255);
}

.btn-providers:hover{
    background: rgb(0, 102, 102);
    color: rgb(179, 255, 255);
}

.btn-stock:hover{
    background: rgb(0, 102, 102);
    color: rgb(179, 255, 255);
}

.container-data{
    height: 92%;
    margin: 0px 0px 0px 250px;
}

.header{
    align-items: center;
    background: rgb(0, 102, 102);
    box-shadow: 10px 0px 10px black;
    display: flex;
    height: 45px;
    justify-content: space-around;
    position: fixed;
    width: 87%;
}

.header h2, h1{
    color: rgb(179, 255, 255);
    margin: 0px;
}

.title{
    font-size: 30px;
    margin: 0px;
}

.btn-exit{
    align-items: center;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    color: white;
    display: flex;
    height: 30px;
    justify-content: center;
    text-decoration: none;
    width: 100px;
}

.btn-exit:hover{
    background: rgb(179, 255, 255);
    color:  rgb(0, 102, 102);
}

.container-info{
    align-items: center;
    display: flex;
    font-size: 90px;
    height: 100%;
    justify-content: center;
    padding-top: 45px;
    width: 100%;
}

.container-info p{
    margin: 0px;
}