
 /* Risk & liklihood botton and formatting */
  
 button {
    background-color: rgb(121, 125, 124);
    border-radius: 6px;
    border: none;
    color: rgb(255, 255, 255);
    padding: 10px;
    text-transform: uppercase;
    width: 710px;
    cursor: pointer;
    font-family: Helvetica, Arial, sans-serif;
    text-align: auto;
    margin-left: 10em 
    }
  
  #RiskId {
    height: 200px;
    width: 710px;
    padding: 75px;
    margin: 50px right;
    border: 1px solid gray;
    border-radius: 10px;
    font-size:65px;
    font-family: Helvetica, Arial, sans-serif;
    margin-left: 2.05em 
   }

   /* UTILITIES */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }
  
   body {
    font-family: perpectua;
     }
  
   .body-text {
    font-size: 25pt;
    text-align: left;
    color: grey;
    margin-left: 2.5em ;
   }

   .table-text {
    font-size: 15pt;
    text-align: left;
    color: grey;
    margin-left: 4.5em ;
   }
  
   a {
    text-decoration: none;
   }
  
   li {
    list-style: none;
   }
  
   /* NAVBAR STYLING STARTS */
  
  .navbar {
    display: flex;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: rgb(60, 63, 63);
    color: #fff;
   }
   .nav-links a {
    color: #fff;
   }
  
   /* LOGO */
  
   .logo {
    align-items: left;
    font-size: 32px;
      
   }
  
  
   /* NAVBAR MENU */
  
   .menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
   }
   .menu li:hover {
    background-color: #060606;
    border-radius: 5px;
    transition: 0.3s ease;
   }
   .menu li {
    padding: 5px 14px;
   }
  
   /* DROPDOWN MENU */
  
   .services {
    position: relative; 
   }
   .dropdown {
    background-color: rgb(233, 35, 35);
    padding: 1em 0;
    position: absolute; /*WITH RESPECT TO PARENT*/
    display: none;
    border-radius: 8px;
    top: 35px;
   }
   .dropdown li + li {
    margin-top: 10px;
   }
   .dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
   }
   .dropdown li:hover {
    background-color: #757676;
   }
   .services:hover .dropdown {
    display: block;
   }
  
  /*RESPONSIVE NAVBAR MENU STARTS*/
  
  /* CHECKBOX HACK */
  
  input[type=checkbox]{
    display: none;
   } 
   /*HAMBURGER MENU*/
  
   .hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
   }
   
   /* APPLYING MEDIA QUERIES */
   
   @media (max-width: 768px) {
   .menu { 
    display:none;
    position: absolute;
    background-color:teal;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
   }
   .menu li:hover {
    display: inline-block;
    background-color:#4c9e9e;
    transition: 0.3s ease;
   }
   .menu li + li {
    margin-top: 12px;
   }
   input[type=checkbox]:checked ~ .menu{
    display: block;
   }
   .hamburger {
    display: block;
   }
   .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
   }
   .dropdown li:hover {
    background-color: #4c9e9e;

   }
  }