body{
    background-color: rgb(183, 191, 244);
    font-family: Helvetica, sans-serif;
}

#heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    
}
h1, h2, h3, h4 {
    font-weight: bold;
}
#heading h2 {
    margin: 0px;
}

#container {
    
    width: 50%;
    background: white; 
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
    height: 600px;
  
    
    
}

#left, #right {
 
    width: 25%;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    padding: 20px;
  box-sizing: border-box;
  height: 700px;
  
}

#content {
    display: flex;
    justify-content: space-between;
     align-items: flex-start; 
      gap: 10px;
}




input{
    width: 50px;
    border-radius: 4px;
}



