

:root{
    --sky-color: rgb(7, 9, 34); 
    --moon-color: rgb(240, 232, 232);
    --font-color:  rgb(184, 184, 184);
    --child2-bg: rgb(26, 26, 26);
    --sky-layer:  rgb(6, 8, 35);;
    --height: 100vh;
    --style-card-border-radius: 2px;
    --sepLine-color: rgb(41, 39, 39);
    --card-separator: rgb(255, 255, 255);
    --row-gap-contact: 10%;
}


body {
    margin: 0;
    padding: 0;
    align-self: center;
    color: white;
    position: relative;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    background-color: rgb(5, 8, 35); 

}



.container2 {
    position: absolute;
    width: 100vw;

    z-index: 10;
    height: 100vh;
}


.starOut {
    width: 100vw;
    height: 100vh;
}
#vb {
    animation: starOut 50s linear forwards;
}
#va{
    animation: starIn 100s 1s linear forwards;
    
}


.starIn {
    z-index: 10;
    width: 100vw;
    height: 100vh;
}

::-webkit-scrollbar {
    width: 0;  
    background: transparent;  
}

.msgContainer,.loader {
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 11;
}


.msgContainer {
    background-color: rgb(190, 189, 189);
}
.error {
    display: flex;
    height: fit-content;
    width: fit-content;
    flex-direction: column;
}
#error {
    display: none;
}

.msg{
    font-family: "Lilita One", sans-serif;
    font-size: 600%;
    color:rgb(151, 146, 156); 
    transform: scaleY(1.2); 
    display: flex;
    justify-content: center;
}



.error-msg {
    font-family: "Manjari", sans-serif;
    color: rgb(94, 93, 93);
    opacity: .8;
}

.loader {
    display: flex;
    background-color: rgb(10, 10, 32);

}
.loading, #loading {
 display: flex;
 width: fit-content;
 height: fit-content;
}

.loading {
    flex-direction: column;
}

#loading {
    display: flex;
}


#rect {
    width: 10px;
    height: 10px;
    background-color: rgb(243, 243, 243);
    opacity: .8;
    margin: 5px;
}




