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

body {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    background-image: url('../assets/dashboard_background.png');
    background-size: cover;
    background-position: center 50px;
}

#app-component-container {
    width: 100%;
    height: 100%;
}

#app-component {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button {
    padding: 20px;
    margin: 0 10px;
    border-radius: 20px;
    border: none;
    color: white;
    background-color: black;
    cursor: pointer;
}