body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* NAVBAR STYLES */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #081f36;
      padding: 10px 20px;
      color: white;
    }

    .navbar a {
      color: white;
      text-decoration: none;
      margin: 0 10px;
      font-weight: bold;
    }

    .navbar a:hover {
      text-decoration: underline;
    }

    .nav-left {
      font-size: 18px;
      font-weight: bold;
    }

    .nav-right {
      display: flex;
    }

    main {
      padding: 30px;
      text-align: center;
    }