body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("./images/bg.svg");
    color: rgb(0, 34, 26);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.container {
    display: flex;
    flex-wrap: wrap;
    height: 90vh;
    width: 90vw;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
}

/* holder containers */
.leftSide {
    width: fit-content;
    text-align: right;
    padding: 5%;
}

.rightSide {
    width: fit-content;
    text-align: center;
}

/* leftSide text */
#theDate {
    font-weight: 400;
    font-size: 3rem;
    line-height: 50%;
    margin: 0;
}

#day, #year {
    font-size: 1.5rem;
}

/* rightSide text */
/* #time {
    font-size: 3rem;
    border: 5px solid grey;
    border-radius: 50%;
    width: fit-content;
    padding: 8.5rem 5rem;
} */

#time {
    font-size: 3rem;
    border: 5px solid grey;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1em;
    vertical-align: middle;
    padding: 10%
  }
  
  #time:before {
    content:'';
    float: left;
    width: auto;
    padding-bottom: 100%;
  }
  


/* Extra small devices (phones, 415px and down) */
@media only screen and (max-width: 415px) {
    
    .rightSide {
        align-items: center;
    }
    .leftSide {
        text-align: center;
    }
    #time{
        padding: 6rem 2.5rem;
    }

}