* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Monaco, monospace;
  background-color:cadetblue;
}

html, body {
  height: 100%;
  width: 100%;
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw;
  flex-direction: column;
}

/* top */
.top {
  flex: 2;
  display: flex;
}

/* top right */
.right {
  flex: 1;
  float:left;
  text-align: center;
  display: flex;
  align-items: center;    /* Vertical center */
  justify-content: center; /* Horizontal center */
}

/* top left*/
.top-left, .details {
  flex: 1; 
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1{
  font-weight: bold;
  font-size: 1.7em;
}

.data_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1; /* Take remaining space */
}

.data_label {
  font-size: 1.3em;
  font-style: italic;
  height: 100px;
  display: flex;
  align-items: center;    /* Vertical center */
  justify-content: center; /* Horizontal center */
}

.data {
  font-weight: bolder;
  font-style: normal;
}

/* bottom */
.bottom {
  flex: 1; 
  display: flex;
  flex-direction: row;
  align-items: center;
}

.notif, .details {
  flex: 1;
  text-align: center;
  height: 100%;          
  display: flex;              
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#enablePush {
    font-weight: bold;
    transition-duration: 0.4s;
    padding: 5px; 
    border-radius: 4px;
    background-color: aliceblue;
    cursor: pointer;
    margin-top: 2%;
}

#enablePush:hover {
  background-color: black;
  color: white;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}