body {
    font-family: "Courier New", monospace;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #c0c607;
  }
  
  .title {
    font-size: 48px;
    margin: 100px 0;
    font-weight: 700;
    color: #000;
  }
  
  .assignment-btns {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  
  .assignment-btn {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #000s;
    background-color: #fff;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Courier New', Courier, monospace;
    color: #333;
  }
  
 
  
  .submission-btns {
    display: flex;
    justify-content: space-around;
  }
  
  .submission-btn {
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid #555;
    background-color: #f0f0f0;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Courier New', Courier, monospace;

  }
  
  .submission-btn:hover {
    background-color: #555;
    color: #fff;
  }
  
  /* ... previous styles ... */

.assignment-btns, .submission-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
  }
  
  .assignment-btn{
    width: 10%;
    margin: auto;
  }

  .submission-btns {
    width: 10%;
    margin-left: 60%;
    margin-top: -120px;
  } 

.assignment-btn:hover {
    background-color: #fff;
    color: #333;
    scale: 1.1;
  } 

#A2_JS {
    margin-left: 100px;
}

#A2 {
    margin-left: -330px;
}
