
.loader {
    height: 100%;
    width: 100%;
    background-color: #d9fad6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: +100;
    /* display: none; */
}

.content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2vh;
    position: relative;
}

.node {
    height: 80px;
    width: 80px;
    background-color: #d9fad6;
    border-radius: 50%;
    border: 3px solid rgba(48, 40, 40, 0.822);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: +50;
    font-size: xx-large;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgba(48, 40, 40, 0.822);
}

.row {
    display: flex;
    justify-content: space-evenly;
    width: 20%;
}

.row .node{
    position: relative;
}

.branch {
    position: absolute;
    width: 4px;
    background-color: rgba(48, 40, 40, 0.822);
    transform-origin: top;
    z-index: 20;
}

.branch-left {
    height: 40px;
    left: 50%;
    bottom:31%;
    transform: rotate(-45deg);
}

.branch-right {
    height: 40px;
    left: 50%;
    bottom: 31%;
    transform: rotate(45deg);
}

.loader h1 {
    font-size: 1.8rem;
    font-family: 'Lucida Sans', Geneva, sans-serif;
    font-weight: bold;
    color: rgba(48, 40, 40, 0.9);
    margin: 10px 0;
    text-align: center;
}

.loader p {
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    color: #2a2a2a;
    text-align: center;
}

@media (max-width: 320px){
    .row{
        width: 80%;
    }
}
@media (max-width: 500px){
    .row{
        width: 50%;
    }
}