* {
    padding: 0px;
    margin: 0px;
}

#APP {
    background: black;
    width: 100%;
    height: 100%;
}

.appContainer {
    max-width: 90%;
}

.buttonRegisterOnHeader {
    height: 40px;
    background: white;
    color: black;
    border-radius: 100px;
    padding: 0px 24px;
    cursor: pointer;
    font-weight: 600;
}

.homeCenterTitle {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 32px;
    font-weight: 600;
}

.homeCenterBox {
    width: 50%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.homeCenterFirst {
    height: 70px;
    gap: 1px;
}

.homeCenterSecond {
    height: 110px;
    background: rgba(255, 255, 255, 0.2);
}

.homeCenterTab {
    height: 70px;
    width: calc(20% - 1px);
    background: rgba(255, 255, 255, 0.1);
}

.homeCenterTab:last-child {
    width: 20%;
}

.homeCenterTab.isActive {
    background: rgba(255, 255, 255, 0.2);
}