/* fonts */
@font-face {
    font-family: 'ZeroheroDemo';
    src: url('ass/fonts/ZeroheroDemo.ttf') format('truetype');
}

/* end fonts */
/* preloader */
.preloader {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    border: 10px solid #B8FF01;
    border-radius: 50%;
}

.loader-circle img {
    width: 200px;
    height: 200px;
}

/* end preloader */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: ZeroheroDemo;
}

body {
    background-color: #090909;
    color: #ffff;
}

nav {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    -webkit-border-image: url(/img/Vector\ 23.png) 0 0 8 0 round
}

.date {
    margin-left: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#clock {
    padding-right: 10px;
    color: #B8FF01;
    letter-spacing: 2px;
}

#day {
    color: #B8FF01;
    letter-spacing: 2px;
}

ul {
    display: flex;
    list-style: none;
}

ul li {
    padding-right: 50px;
    font-size: 20px;
}

li i {
    width: 20px;
    color: #29BEB6;
}

.active {
    color: #B8FF01;
}

.weather {
    padding-right: 50px;
    color: #B8FF01;
    letter-spacing: 2px;
}

.container {
    display: flex;
    position: relative;
    top: 100px;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: #090909;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: absolute;
    right: 0;
    width: 450px;
    height: 100%;
}

.right img {
    width: 400px;
    height: auto;
    /* Adjusted to maintain aspect ratio */
    margin-top: 50px;
    margin-right: 20px;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: absolute;
    left: 0;
    width: 450px;
    height: 100%;
}

.left img {
    width: 100%;
    /* Adjusted to fit within the container */
    height: auto;
    /* Adjusted to maintain aspect ratio */
    margin-top: 70px;
    margin-right: 20px;
}

.center {
    flex: 1;
    height: 100%;
    /* Uses available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center .wrap {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 500px;
    height: 100px;
    top: 350px;
    z-index: 1;
    position: absolute;
}