* {
    padding: 0;
    margin: 0;
}
body { 
    /* background-image: url('./nightbg.jpg');  */
    /* background-size: cover;
    background-attachment: fixed;
    background-position: center; */
    background-color: rgb(0, 0, 0);
    z-index: -10;
    color: rgb(224, 224, 224);
    font-size: 25px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 400;
    overflow: hidden;
}


input {
    width: 50px;
    height: 30px;
    font-size: medium;
}

/* Basic styling */
svg {
    width: 100%;
}

.container {
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.svg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    
}

.filled-heading {
    text-transform: uppercase;
    font-family: "Roboto", Arial, Helvetica, sans-serif ;
    font-size: 75px ;
    line-height: 0.9;
    font-weight: 900;
}

/* Animate the background shapes */
#background path {
    transform-origin: 50% 50%;
    transform-box: fill-box;
}
#background path:nth-of-type(2n) {
    animation: rotate 20s linear infinite;
}
#background path:nth-of-type(2n + 1) {
    animation: rotate 30s linear reverse infinite;
}

@keyframes rotate {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

.flex {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    height: 100vh;
    justify-content: stretch;
    align-content: flex-end;
    align-items:flex-end;
    /* background-color: rgba(131, 131, 131, 0.466); */
    position: absolute;
    
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
    .flex {
        justify-content: flex-end;
    }
    .timeBox {
        flex: 100%;
    }
}

.timebox::-webkit-scrollbar {
    display: none;
  }
  
.timeBox h1 {
    font-size: 150px;
    font-weight: 500;
    transition: all 5s ease-in-out;
}

.timeBox h2 {
    font-size: 50px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color: #26E2FF;
}

.timeBox {
    /* display: flex; */
    flex-grow: 1;
    min-height: 0px;
    max-height: 500px;
    overflow: scroll;
    /* width: 600px; */
    padding: 30px;
    /* margin: 30px; */
    /* line-height: 100px;
    background-color: rgba(0, 255, 255, 0.438); */
    text-align: right;
    
}

#time {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 700;
}
#clock {
    flex-shrink: 0;
    flex-grow: 1;
    min-width: 600px;
}

#dayNight {
    font-size: 35px;
}

#statDiv {
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 5s ease-in-out;
    line-height: 50px;
    /* text-shadow: 1px 1px black; */

    min-width: 600px;
}

table {
    width: 100%;
    margin-top: 20px;
    text-align: right;
    padding: 20px;
}

table th {
    font-size: 15px;
    color: #26E2FF;
}

table td {
    font-size: 35px;
}