body {
    display: flex;
    flex-direction: column;
    background: none;
    background-color: rgb(96, 90, 109);
    height: 90vh;
    max-height: 90vh;
    padding: 0;
    margin: 0;
    height: auto;
}
main{
    padding-top: 5vh;
}
.newServerTime {
    max-height: 15%;
}

#stickGrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 1px;
    grid-row-gap: 1px;
}

#stickChart {
    background-color: rgb(58, 53, 67);
    color: white;
    font-family: sans-serif;
    font-size: 30px;
    text-align: center;
    grid-area: 1 / 1 / 4 / 5;
    border-radius: 25px;
}

#stickIndicators {
    background-color: rgb(58, 53, 67);
    color: white;
    font-family: sans-serif;
    font-size: 30px;
    text-align: center;
    grid-area: 4 / 1 / 5 / 5;
    border-radius: 25px;
}

#stickOrders {
    background-color: rgb(58, 53, 67);
    color: white;
    font-family: sans-serif;
    font-size: 18px;
    text-align: center;
    grid-area: 1 / 5 / 5 / 7;
    border-radius: 25px;
}
.graphicContainer {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 30vh;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.client, .server, .api {
    padding: 10px;
    background-color: rgb(58, 53, 67);
    border-radius: 25px;
}

.server {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 0px;
}
.serverTittle{
    grid-area: 1 / 1 / 2 / 3;
    text-align: center;
    border-bottom: 1px solid rgb(247, 243, 221);
}
.mainServer {
    order: 1;
    grid-area: 2 / 1 / 3 / 2;
}

.proxyServer {
    order: 2;
    grid-area: 2 / 2 / 3 / 3;
}

.api {
    text-align: center;
    order: 3;
}

.svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    
}

path,polyline {
    position: absolute;
    fill: none;
    stroke-width: 2px;
    /*animation: 10s infinite arrows;*/
    animation: arrows 5s linear infinite;
   /* transform: translateY(-1250px);*/
   stroke-dasharray: 100 300;
   stroke-dashoffset: 300;
}
@keyframes arrows {
    0%{
        
        stroke-dashoffset: 400;
    }
    100%{
        stroke-dashoffset: 0;
    }
}
svg.svg, path, polyline {
    overflow: visible !important;
}
#topGraphicContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}
footer {
    position: relative;
    background-color: rgb(58, 58, 58);
    width: 100%;
    color: rgb(247, 243, 221);
    text-align: center;
}
#footerDescription {
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: rgba(0, 0, 0, 0.21);
    padding: 4vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
    justify-content: space-evenly;
}
#footDesc1, #footDesc2{
    display: flex;
    max-width: 40vw;
    height: auto;
    border-top: .1rem solid white;
    border-radius: 1rem;
    text-align: center;
    justify-content: flex-start;
    background-color: rgba(168, 71, 0, 0.4);
    padding: 1rem;
}
#graphicKey {
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 0.1vh;
}
h3 {
    font-size: 2vw;
}
#keyRedRect{
    background-color: rgba(255, 0, 0, 0.5);
    width: 5vw;
    height: 5vw;
    border-radius: 1rem;
}
#keyWhiteRect{
    background-color: rgba(255, 255, 255, 0.7);
    width: 5vw;
    height: 5vw;
    border-radius: 1rem;
}
#graphicKey div {
    display: flex;
    flex-direction: row;
    align-items: center;
}