/* General body styling */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  /* Styling the blue square with a red perimeter */
  .square {
    width: 50em;
    height: 50em;
    background-color: blue;
    border: 7em solid red;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10em 0;
  }
  
  a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  .main-scoreboard {
    position: absolute;
    top: -4.2em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3em;
  }
  
  .corner-link {
    position: absolute;
    font-size: 2.5em;
  }
  
  .corner1 {
    top: 1em;
    left: 1em;
  }
  
  .corner2 {
    top: 1em;
    right: 1em;
  }
  
  .corner3 {
    bottom: 1em;
    right: 1em;
  }
  
  .corner4 {
    bottom: 1em;
    left: 1em;
  }
  