 
        /*styling is minimal just to closely match te picture and took advantage of bootstrap*/

body {
    font-size: large;
    line-height: 1;
    background-color: white;
}

.darkMode{
    background-color: grey;
    color: white;
}

header {
    width: 100%;
    text-align: center;
    border-radius: 0;
}

.jumbotron {
    background: transparent;
    border-bottom: 15px solid rgb(0, 0, 0);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.darkModejumbo {
    color: rgb(186, 185, 185);
    border-bottom: 15px solid rgb(186, 185, 185);
    background-color: black;

}

textarea {
    background: transparent;
    border: none;
    resize: none;
    color: black;
    
    padding: 10px;
}

h3 {
    text-align: center;
    color: red;
}

footer {
    margin: 25px;
    text-align: center;
}

.event-text {
    white-space: pre-wrap;
    border: 1px dashed black;
    background: transparent;
    text-align: left;
    align-items: center;
    justify-content: center;
    align-content: center;
   
}

.hour-block {
    text-align: right;
    border-radius: 15px;
    
}

.row {
    white-space: pre-wrap;
    height: 80px;
    margin-bottom: 3px;
   
}


.hour {
    width: 100%;
  background-color: aliceblue;
  border: 1px solid black;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  text-align: center;

}



.saveBtn {
    background-color: rgb(17, 156, 211);
    color: aliceblue;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 1px solid black;

}

.hourDark {
    background-color: black;
    color: rgb(236, 236, 236);
    
}



.past {
    background-color: rgb(205, 203, 203);
    color: grey;
}


  
.present {
    background-color: #ff6961;
    color: black;
}
  
.future {
    background-color: #77dd77;
    color: black;
}

.makeBig {
    font-size: 50px;
}

.centerCont {
    display: flex;
    flex-wrap: wrap;
   
    text-align: center;
    margin: auto;
    justify-content: center;
}


.toggle {
    border-radius: 100%;
    height: 70px;
    width: 70px;
}

.toggle:hover {
    scale: 1.1;
    box-shadow: 0 0 5px 3px;
}

.toggleDark  {
    background-color: rgb(49, 10, 84);
    color: yellow;
}
