*{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13pt;
    transition: .5s ease;
}
h1{font-size: 3rem;}
h2{font-size: 2rem;}
h3{font-size: 1.5rem;}


h1, h2, h3{
    margin: 0px 0px 20px 0px ;
}
li{
    list-style: armenian;
}
.list{
    margin-left: 40px;
}
a{
    color: white;
    text-decoration: none;
    opacity: .75;
}
a:hover{
    opacity: 1;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;


    color: white;
    background: url(/graphics/Site/middle.webp);
    background-size: cover;
    background-position: top;
    
}

.window{
    border: 1px solid black;
    border-radius:10px;
    box-shadow: 10px 10px 10px black;

    /* padding: 2rem; */
    width: 75%;
    max-width: 700px;

    box-sizing: border-box; /*fixes the L&B*/

    overflow: hidden;
}

.outbox{
    padding: 8px;
}
.panel, .outbox{
    background: rgba(49, 49, 49, 0.325);
    backdrop-filter: blur(2px);   
}

.inbox{
    border: 1px solid gray;
    border-radius: 3px;
    background: #381d12e6;

    padding: 1rem;
}
pre{
    white-space: pre-wrap;
    word-break: break-word;
    overflow: break-word;
}

.panel{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 24px;

}

.panel-title{
    display: flex;
    align-items: center;
    color: black;
    text-shadow: 1px 0px 2px white;

    /* margin: 5px 12px -5px; */
    padding: 10px ;
    gap: 10px;
}


.icn{
    display: block;
    width: 10px;
    height: 10px;
    object-fit: contain;
}

.minmax{
    display: flex;
}

.-ox-, .-oxo, .-oxx{
    border: 1px solid rgba(255, 255, 255, 0.208);
    width: 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.-oxx{
    background: linear-gradient(to bottom, #D38982, #a43929, #D38982);
}

/* .-oxo, .-ox-{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%,  #01ab9d33 100%);
} */


 /* animation */


.loading-animation{
    display: flex;
    animation: loading 1s infinite;
}
.dot1, .dot2, .dot3, .dot4{
    font-size: 2rem;
}

.dot1{
    
    animation: dot1 infinite 1s;
}
@keyframes dot1 {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
.dot2{
    
    animation: dot2 infinite 1s .20s ;
}
@keyframes dot2 {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
.dot3{
    
    animation: dot3 infinite 1s .40s;
}
@keyframes dot3 {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
.dot4{
    
    animation: dot4 infinite 1s .60s;
}
@keyframes dot4 {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
/* animation */