body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 1vh;
    padding-left: 1vw;
    padding-right: 1vw;
    color: #fff;
    caret-color: transparent;
    overflow: hidden;
    transition: background-color 1s ease-in-out;
    z-index: 99;
}

* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

#blur{
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 5;
}

body, html{
    height: 100vh;
    background-color: #1a1d4e;
}

header {
    position: absolute;
    width: 98vw;
    height: 10vh;
    top: 1vh;
    left: 1vw;
    margin: 0 auto;
    display: flex;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 0 5px white;
    transition: transform 0.3s ease-in-out;
}

header.hidden {
    transform: translateY(-120%);
}

.left-part, .right-part {
    height: 100%;
    font-size: 20px;
}

.left-part {
    background-color: #0b776e;
    color: aqua;
    text-shadow: 0 0 5px blue;
    border-top-left-radius: 20px;
    width: 77%;
    padding: 0 1%;
    padding-right: 0;
    display: flex;
    align-items: center;
}

#hmobile{
    display: none;
}

#logo{
    height: 9vh;
}

.right-part {
    background-color: #252526;
    border-top-right-radius: 20px;
    width: 23%;
    padding: 0 1%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#menubar {
    width: 100%;
    height: 100%;
    margin: 0 1%;
}

#menubar ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

#menubar li {
    flex: 1;
}

#menubar a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* zajmuje całą wysokość */
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

#menubar li:last-child a {
    border-right: none; /* brak kreski na końcu */
}

#menubar a:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#menubar a:active {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(0);
    box-shadow: none;
}






#navbar{
    margin-left: auto;
    display: none;
}

#menuToggle {
    font-size: 28px;
    color: white;
    cursor: pointer;
    border: none;
    background: none;
}

#menuList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    flex-direction: column;
    background: #0b776e;
    position: absolute;
    top: 6.5vh;
    left: 0;
    right: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    animation: slideDown 0.3s ease;
    z-index: 999;
}

#menuList li {
    border-bottom: 1px solid #ddd;
}

#menuList li:last-child {
    border-bottom: none;
}

#menuList a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: aqua;
    font-weight: 500;
    transition: background 0.3s;
    text-shadow: none;
}

#menuList a:hover {
    background: #f1f1f1;
}

@keyframes slideDown {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}

#menuList.active {
    display: flex;
}




#fullscreenBtn {
    padding: 8px 12px;
    font-size: 24px;
    background-color: transparent;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    border: dashed 1px #0b776e;
    transition: background-color 0.3s, transform 0.3s;
}
  
#fullscreenBtn:hover {
    background-color: #101d25;
}

@keyframes scaleAnimation {
    0%, 100% {
      transform: scale(0.9);
    }
    50% {
      transform: scale(1.1);
    }
  }
  
#fullscreenBtn:active {
    animation: scaleAnimation 1s infinite;
}

#line2 {
    width: 100%;
    height: 35vh;
    display: flex;
}

#cube {
    position: absolute;
    top: 12.5vh;
    left: 1vw;
    width: 19.6vw;
    height: 32vh;
    background-color: #080808;
    box-shadow: 0 0 5px white;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

#cube.toleft {
    box-shadow: 0 0 0 transparent;
    transform: translateX(-105%);
}

#mesh {
    width: 18vw;
    max-width: 100%;
    height: 13.4vw;
    max-height: 32vh;
    margin: auto;
}

.mesh_line {
    height: 4.2vw;
    max-height: 10.05vh;
    width: 100%;
    margin-bottom: 0.4vw;
    display: flex;
    justify-content: space-between;
}

.mesh_side {
    width: 4.2vw;
    max-width: 23.8%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
    grid-template-rows: repeat(3, 33.33%); 
}

.mesh_piece {
    border: 1px solid #080808;
    box-sizing: border-box;
}

.mesh_side > :nth-child(1) {
    border-radius: 0 0 1px 0;
}

.mesh_side > :nth-child(2) {
    border-radius: 0 0 5px 5px;
}

.mesh_side > :nth-child(3) {
    border-radius: 0 0 0 1px;
}

.mesh_side > :nth-child(4) {
    border-radius: 0 5px 5px 0;
}

.mesh_side > :nth-child(5) {
    border-radius: 8px;
}

.mesh_side > :nth-child(6) {
    border-radius: 5px 0 0 5px;
}

.mesh_side > :nth-child(7) {
    border-radius: 0 1px 0 0;
}

.mesh_side > :nth-child(8) {
    border-radius: 5px 5px 0 0;
}

.mesh_side > :nth-child(9) {
    border-radius: 1px 0 0 0;
}

.mesh_black {
    width:  1.4vw;
    height: 1.4vw;
    background-color: #080808;
}

.mesh_white {
    width:  1.4vw;
    height: 1.4vw;
    background-color: white;
}

.mesh_yellow {
    width:  1.4vw;
    height: 1.4vw;
    background-color: yellow;
}

.mesh_green {
    width:  1.4vw;
    height: 1.4vw;
    background-color: green;
}

.mesh_blue {
    width:  1.4vw;
    height: 1.4vw;
    background-color: blue;
}

.mesh_orange {
    width:  1.4vw;
    height: 1.4vw;
    background-color: #fc6a03;
}

.mesh_red {
    width:  1.4vw;
    height: 1.4vw;
    background-color: red;
}

#scramble_container {
    position: absolute;
    top: 11vh;
    left: 20.6vw;
    height: 35vh;
    width: 53.9vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#scramble {
    width: 97%;
    padding: 3vh 0;
    border-radius: 20px;
    box-shadow: 0 0 3px white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    letter-spacing: 2px;
    transition: color 0.3s, box-shadow 0.3s;
}

#scramble.faded {
    color: transparent; 
    box-shadow: none;
}

#scramble i {
    color: white;
    margin: 0 0.5vw;
    transition: color 0.3s;
}

#left_arrow {
    transition: color 0.3s;
}

#left_arrow.fade{
    color: transparent;
}

#right_arrow {
    transition: color 0.3s;
}

#right_arrow.fade{
    color: transparent;
}

#table_container{
    width: 96%;
    margin-top: 2%;
    margin-left: 2%;
    overflow-y: auto;
    height: 96%;
    border-radius: 10px;
}

#stats {
    position: absolute;
    top: 12.5vh;
    left: 74.5vw;
    width: 24.5vw;
    height: 32vh;
    background-color: #080808;
    box-shadow: 0 0 5px white;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

#stats.toright {
    transform: translateX(105%);
    box-shadow: 0 0 0 transparent;
}

#stats select {
    background-color: black;
    color: white;
    font-size: 16px;
    border-radius: 3px;
    padding: 1px;
}

#stats table {
    width: 100%;
    padding: 0 10px;
    max-height: 75%;
}
#stats table th {
    font-size: 22px;
}

#stats table td {
    background-color: #0c0c0c;
}

#line3 {
    width: 100%;
    height: 34vh;
    display: flex;
}

#blank_space {
    width: 20%;
    height: 34vh;
}

#time {
    position: absolute;
    left: 23.54vw;
    top: 48.5vh;
    width: 48.02vw;
    height: 31vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 126px;
    color: darkslategray;
    font-family: monospace;
    transition: transform 0.3s ease-in-out, font-size 0.3s;
    user-select: none;
}

#time.clicked {
    transform: translate(5%, -40%) scale(1.2);
    font-size: 166px;
}

#times {
    position: absolute;
    left: 74.50vw;
    top: 46vh;
    width: 24.5vw;
    height: 52vh;
    background-color: #080808;
    box-shadow: 0 0 5px white;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

#times.toright {
    transform: translateX(105%);
    box-shadow: 0 0 0 transparent;
}


.scroll_bar {
    height: 96%;
    width: 96%;
    margin: 2% 2%;
    overflow: scroll;
    overflow-x: hidden;
}

.scroll_div {
    width: 95%;
    height: 50px;
    margin: 5px 0;
    padding: 0 2%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

#main_scroll {
    flex: 3;
    box-sizing: border-box;
    max-width: 100%;
    display: flex;
    cursor: pointer;
    background-color: rgb(16, 21, 24);
    padding: 3% 0;
    box-shadow: 0 0 6px aqua;
    border-radius: 8px;
    z-index: 1;
}

#main_scroll span {
    margin-left: 8px;
    color: aqua;
}

#leftend {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: left;
    color: black;
    background-color: aqua;
    box-shadow: 0 0 6px aqua;
    padding: 0 1%;
}

#rightend {
    flex: 1;
    box-sizing: border-box; 
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: black;
    background-color: aqua;
    font-size: 26px;
    box-shadow: 0 0 6px aqua;
}

#rightend:hover{
    background-color: #00ffff99;
}

#rightend.high{
    background-color: rgba(0, 255, 255, 0.6);
}

.time_set {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    font-size: 17px;
    margin-right: 8px;
    background-color: #020202;
    box-shadow: 0 0 5px #020602;
    border-radius: 8px;
}

.time_set div, .time_set i {
    margin: 0 5px;
}

.time_set div:hover, .time_set i:hover{
    color: gray;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border: 1px solid #bdffe6;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: #bdffe6;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a2fcdb;
}

#mesh_icon{
    display: none;
}

#list_icon{
    display: none;
}

#statsmobile{
    display: none;
}


#settBtn {
    color: #0b776e;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

#settBtn:hover {
    color: aqua;
}

#settBtn:active {
    transform: scale(0.95);
}

#settings{
    position: absolute;
    top: 12.5vh;
    left: 74.5vw;
    width: 22.5vw;
    height: 85.5vh;
    padding: 0 1vw;
    background-color: #000008;
    z-index: 1010;
    border-radius: 20px;
    box-shadow: 0 0 10px #0b776e;
    display: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

#settings.toright{
    transform: translateX(105%);
    box-shadow: 0 0 0 transparent;
}

#settings h2{
    text-align: center;
    background-color: #0b776e;
    box-shadow: 0 0 5px aqua;
    width: 94%;
    padding: 10px;
    margin: 20px auto;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}

.setting {
    margin-bottom: 15px;
    background-color: rgb(2, 18, 27);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 4px aqua;
}
  
.setting label {
    display: inline-block;
    margin-left: 10px;
    font-size: 16px;
}
  
.setting input[type="checkbox"],
.setting select {
    vertical-align: middle;
}
  
.setting input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid aqua;
    border-radius: 5px;
    cursor: pointer;
}
  
.setting input[type="checkbox"]:checked {
    background-color: #007bff;
    border-color: #007bff;
}
  
.setting input[type="checkbox"]:checked::after {
    content: '\2714';
    font-size: 18px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.setting input[type="number"]{
    padding: 6px 10px;
    font-size: 16px;
    border: 1px solid aqua;
    border-radius: 5px;
    background-color: rgb(27, 57, 92);
    cursor: pointer;
    width: 4vw;
    margin-left: 10px;
    display: none;
}

.setting input[type="number"]:hover {
    border-color: #007bff;
  }
  
  .setting input[type="number"]:active {
    border-color: #0056b3;
}
  
.setting input[type="number"]::-ms-expand {
    display: none;
}
  
.setting input[type="number"]::after {
    content: '\25BC'; 
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
}

.setting select {
    padding: 6px 10px;
    font-size: 16px;
    border: 1px solid aqua;
    border-radius: 5px;
    background-color: rgb(27, 57, 92);
    cursor: pointer;
  }
  
.setting select:hover {
    border-color: #007bff;
  }
  
.setting select:active {
    border-color: #0056b3;
}
  
.setting select::-ms-expand {
    display: none;
}
  
.setting select::after {
    content: '\25BC'; 
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
}

#closeSett{
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

#closeSett:hover{
    color: aqua;
}

#closeSett:active{
    transform: scale(0.95);
}


#timestats{
    position: absolute;
    left: 33vw;
    top: 22vh;
    width: 34vw;
    background-color: rgb(16, 21, 24);
    border-radius: 20px;
    box-shadow: 0 0 10px rgb(0, 255, 64);
    z-index: 100;
    display: none;
}

#tsgrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90%;
}

#timeStatsTime{
    font-size: 36px;
    color: aqua;
    padding: 5px;
    width: 120%;
    margin: 20px 2%;
    border: 1px solid #0b776e;
    box-shadow: 0 0 1px aqua;
    background-color: rgb(13, 13, 13);
    border-radius: 10px;
    text-align: center;
}

#tsr{
    position: absolute; 
    top: 20px; 
    left: 58%;
}


.ts_set{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    font-size: 20px;
    margin-right: 8px;
    background-color: #0c0c0c;
    border-radius: 8px;
    border: 1px solid #0b776e;
    padding: 1px;
    cursor: pointer;
}

.ts_set div{
    margin: 0 1px;
    border-radius: 5px;
    padding: 2px;
    box-shadow: 0 0 2px black;
    border: 1px solid rgb(20, 20, 20);
}

#date{
    padding-top: 5px;
    font-size: 14px;
}

#timeStatsScramble{
    width: 90%;
    margin: 0 auto;
    border-radius: 8px;
    padding: 5px;
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
}

#closeTimes{
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    position: absolute;
    top: 2%;
    right: 3%;
    font-size: 26px;
}

#closeTimes:hover{
    color: aqua;
}

#closeTimes:active{
    transform: scale(0.95);
}


#timestats button{
    background-color: aqua;
    padding: 5px;
    border-radius: 8px;
}



#ts_scramble{
    width: 20vw;
    height: 20%;
    margin: 20px auto;
}

#cubets {
    width: 19.6vw;
    height: 32vh;
    margin: 15px auto;
}

#meshts {
    width: 18vw;
    max-width: 100%;
    height: 13.4vw;
    max-height: 32vh;
    margin: auto;
}

.leftdel {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    background-color: aqua;
    box-shadow: 0 0 6px aqua;
    padding: 0 1%;
}

.leftdel:hover{
    background-color: #a6edbc;
}

.rightdel{
    flex: 1;
    box-sizing: border-box; 
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: black;
    background-color: #ff3632;
    /*font-size: 26px;*/
    box-shadow: 0 0 6px #ff3632;
}

.rightdel:hover{
    background-color: #a6edbc;
}

.mainsdel {
    flex: 3;
    box-sizing: border-box;
    max-width: 100%;
    cursor: pointer;
    background-color: rgb(16, 21, 24);
    padding: 3% 0;
    box-shadow: 0 0 6px aqua;
    border-radius: 8px;
    z-index: 1;
}

.mainspan {
    margin-left: 5px;
}

#utpens{
    display: none;
}

#prei{
    display: none;
    position: absolute;
    left: 70vw;
    top: 50vh;
    color: #fef200;
    transition: color 0.3s ease-in-out;
}

#prei.fade{
    color: transparent;
}

#loading-screen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1d4e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#logoloa{
    position: absolute;
    width: 80px;
}

.spinner {
    border: 8px solid #fef200;
    border-top: 8px solid aqua;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}

#policy{
    color: red;
}

.site-footer {
  width: 45vw;
  background: rgb(50, 49, 49);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 0 2px rgba(173, 178, 195, 0.737);
  padding: 0px 0px;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  margin-left: 48vw;
  transform: translateX(-50%);
}

.site-footer p {
  margin: 4px 0;
  font-weight: 500;
}

.site-footer nav {
  margin-top: 2px;
}

.site-footer a {
  color: #0366d6;
  margin: 0 6px;
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media only screen and (max-width: 800px) {
    html{
        height: 100%;
    }
    body{
        height: 100%;
    }
    header{
        height: 6%;
        width: 96vw;
    }
    #hpc{
        display: none;
    }
    #hmobile{
        display: block;
    }
    #logo{
        height: 5.5vh;
    }
    #menubar{
        display: none;
    }
    #hpc{
        display: none;
    }
    .left-part{
        width: 60%;
        justify-content: center;
        padding: 0 3vw;
    }
    .right-part{
        width: 40%;
    }
    #navbar{
        display: block;
    }
    #fullscreenBtn {
        padding: 6px 10px;
        font-size: 20px;
    }
    #scramble_container{
        width: 100vw;
        padding-top: 3%;
        height: 10%;
        top: 7%;
        left: 0%;
        align-items: start;
    }
    #scramble{
        font-size: 16px;
        z-index: 10;
        padding: 1.5vh 0;
    }
    #list_icon{
        display: block;
        font-size: 10vw;
        position: absolute;
        top: 18%;
        left: auto;
        right: 2%;
        color: white;
        border-radius: 10px 0 0 10px;
        padding: 4px;
        transition: transform 0.1s ease, color 0.3s ease-in-out, box-shadow 0.1s ease-in-out;
        z-index: 500;
        box-shadow: -1px 0 1px aqua;
    }
    #prei{
        left: auto;
        right: 5%;
        top: 28%;
    }
    #list_icon:active {
        transform: translateX(-5px);
    }
    #list_icon.fade{
        color: transparent;
        box-shadow: 0 0 0 transparent;
    }
    @keyframes slideFromLeft {
        from {
          transform: translateX(-100%);
        }
        to {
          transform: translateX(0);
        }
    }
    @keyframes slideFromRight {
        from {
          transform: translateX(100%);
        }
        to {
          transform: translateX(0);
        }
    }
    #mobile_bottom{
        background-color: gray;
        width: 100%;
        height: 40vw;
        position: absolute;
        bottom: 0;
        left: 0;
        box-shadow: 0 -3px 3px aqua;
        transition: transform 0.3s ease-in-out;
        z-index: 2;
    }
    #mobile_bottom.godown{
        transform: translateY(100%);
    }
    #cube{
        transition: transform 0.3s ease-in-out;
        width: 47.2vw;
        height: 34.6vw;
        z-index: 50;
        top: auto;
        bottom: 3.4vw;
        left: 1.4vw;
        background-color: transparent;
        border: 0;
        box-shadow: 0 0 0 transparent;
    }
    #cube.toleft {
        box-shadow: 0 0 0 transparent;
        transform: translateY(115%);
    }
    #mesh{
        width: 100%;
        height: 100%;
    }
    .mesh_line{
        height: 11vw;
        width: 100%;
        margin-bottom: 0.8vw;
    }
    .mesh_side{
        width: 11vw;
        height: 100%;
        max-width: 100%;
    }
    #x{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: none;
        z-index: 30;
    }
    #table_container{
        margin: 0;
        width: 100%;
        height: calc(100% - 6px);
        margin: 0;
        border-radius: 0;
    }
    #stats{
        width: 50vw;
        left: 50vw;
        top: auto;
        bottom: 0;
        height: 40vw;
        border-radius: 0;
        box-shadow: 0 0 0 transparent;
        z-index: 50;
    }
    #stats.toright {
        transform: translateY(115%);
    }
    #stats table{
        padding: 0;
        background-color: #042b28;
    }
    #stats select {
        font-size: 14px;
        border-radius: 3px;
        padding: 1px;
        width: 68px;
    }
    #stats table th {
        font-size: 16px;
    }
    #stats table td {
        font-size: 14px;
    }
    #time{
        top: 17%;
        left: 2vw;
        width: 96vw;
        height: calc(83% - 40vw);
        box-sizing: border-box;
        font-size: 76px;
        z-index: 1;
    }
    #time.clicked {
        transform: scale(1.6);
        font-size: 58px;
    }
    #times{
        width: 90%;
        top: calc(18% + 10vw + 20px);
        left: 0;
        transform: translateX(115%);
        transition: transform 0.5s ease-in-out;
        z-index: 50;
    }
    #settings{
        position: absolute;
        top: 8%;
        left: 0vw;
        width: 98vw;
        height: 92%;
        border-radius: 20px 20px 0 0;
    }
    .setting input[type="number"]{
        width: 16vw;
    }
    #closeTimes{
        position: absolute;
        top: 1.5%;
        right: 2%;
        font-size: 26px;
    }
    #timestats{
        top: calc(18% + 10vw + 20px);
        left: 2vw;
        width: 94vw;
        z-index: 1100;
    }
    #timeStatsTime{
        width: 95%;
    }
    #tsr{
        left: 48%;
    }
    #cubets{
        width: 80vw;
    }
    #meshts {
        width: 80vw;
        max-width: 100%;
        height: 59.55vw;
        max-height: 60vh;
        margin: auto;
    }
    #meshts .mesh_line{
        width: 100%;
        height: 18.98vw;
        margin-bottom: 1.3vw;
    }
    #meshts .mesh_side{
        width: 19.025vw;
    }
    #utpc{
        position: absolute;
        top: 60%;
        left: 0;
        width: 98%;
        display: flex;
        justify-content: center;
    }
    #utpens{
        display: flex;
        align-items: center;
        justify-content: space-around;
        font-size: 20px;
        background-color: rgba(12, 12, 12, 0.0);
        border-radius: 8px;
        cursor: pointer;
        width: 60%;
    }
    #utpens div{
        margin: 0 1px;
        border-radius: 5px;
        padding: 2px;
        box-shadow: 0 0 2px black;
        border: 1px solid rgb(20, 20, 20);
    }
    .site-footer {
        width: 90vw;
    }
}










