:root{
    --primary-color: #90B3BF;
    --secondary-color: #5d98b9;
    --background-color: #f4f4f4;
    --text-color: #333;
    --font-family: "Inter", sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    width: 100vw;
    font-family: var(--font-family);

}

.container{
    display: flex;
    height: 100vh;
    width: 100vw;
    background-color: var(--background-color);
}

.sidebar{
    color: white;
    width: 220px;
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    flex:1;
}

.empleados-container{
    display: flex;
    height: 100vh;
    flex: 6;
}
.log{
    display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.main-info{
    display: flex;
    align-items: center;
    gap: 25px;
    height: 600px;
    flex: 0 0 5;
    width: 100%;
    .main-text{
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 20px;
        flex: 1;
        font-size: 1.2rem;
        padding: 50px;
   
    }
    .main-img{
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        padding: 50px 20px;

        img{
            width: 50%;
        }
    }
}

.main-funciones{
    display: flex;
    align-items: center;
    padding: 50px 20px;
    height: 600px;
    width: 100%;
    background-color: var(--primary-color);
    overflow-x: hidden;
    justify-content: space-around;
}
.funcion-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    padding: 20px;
    height: 400px;
    width: 300px;
    .fa-solid{
        font-size: 2rem;
    }
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 150px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: bold;
}