
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;600;900&family=Red+Hat+Display:wght@300;400&display=swap'); 
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Red+Hat+Display&display=swap');
  body {  
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
    max-width: 100vw;
    max-height:100vh;
    overflow-x:hidden;
  }
  header{
    width: 100%;
    height: 104px;
    flex-shrink: 0;
    background: linear-gradient(219deg, #0E0E0E 0%, #303030 100%);
  }
  header > div {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
   
    padding-top: 1.5rem;
  }
  header > div > span {
    width: 100%;
    height: 44px;
    display: flex;
    padding-inline: 10rem;
  }
  header > div > span > img{
    padding-inline: 10px;
    height: 44px;
    display: flex;
  }
  .cube{
    color: #FFF;
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
  }
  .access {
    color: #27BA62;
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
  }
  main {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px; 
    width: 100%;
    }
  main > div{
    font-family: 'Red Hat Display', sans-serif;
    display: flex;
    gap:2rem;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding-top: 58px;
    padding-inline: 210px;   
  }
  main > div > span {
    color: #231F20;
    
    font-family: Red Hat Display;
    font-size: 32px;
    font-style: normal;    
    line-height: normal;
  }
  .service {
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); 
  }
  .service-name {
    font-size: 18px;
    font-weight: 500;
  }
  .service-status {  
    font-weight: bold;
  }
  .status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
  }
  .status-up {
    background-color: #27BA62;
  }
  .status-down {
    background-color: #E51F4E;
  }
  .online{
    color: #27BA62;  	
  }
.offline {
    color: #E51F4E;
  }

    .indicator-online {
      fill: #27BA62;
    }

    .indicator-offline {
      fill: #E51F4E;
    }

    .date-time {      
      display: flex;
      padding: 16px;
      align-items: center;
      gap: 10px;
      border-radius: 8px;
      background: #F9F9F9;
      font-family: Red Hat Display;
      font-size: 14px;
      
    }

    label {
	font-weight:400;
	padding: 0.2rem;

    }

    footer {
      background-color: #2f363d;
      color: #fff;
      text-align: center;
      padding: 10px 0;
      position: absolute;
      bottom: 0;
      width: 100%;
    }
  