body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.background {
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 100%;
    transform: translateX(50%); /* Move o gráfico para a direita para que ele fique parcialmente fora da tela */
    overflow: hidden;
    z-index: -1;
    
}

#force-graph {
    width: 100%;
    height: 100%;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.title, .subtitle {
    color: #000; /* Slate color for text */
    margin: 0;
}

.title {
    font-size: 2.5em;
}

.subtitle {
    font-size: 1em;
}

.text-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #000; /* Slate color for text */
    z-index: 1;
    text-align: left;
}
