/* styles.css */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    padding: 20px;
  }
  
  main {
    max-width: 600px;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0.5px solid rgba(19, 172, 243, 0.5);
    border-radius: 5%;
    padding: 30px 0px;
    box-shadow: 5px 10px 30px rgba(19, 172, 243, 0.5);
  }
  
  h1 {
    font-size: 30px;
  }
  
  p {
    margin: 10px 0;
    font-size: 26px;
  }
  
  img {
    margin: 15px 0px;
    border: 2px solid white;
    border-radius: 50%;
  }
  
  a {
    color: #319be2;
    font-size: large;
    text-underline-offset: 5px;
  }
  
  a:hover {
    text-decoration: none;
    color: aquamarine;
  }
  

  .time{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .utctime{
    font-size: 20px;
    color: aquamarine;
  }
  .divider{
    color: #319be2;
  }