/* 

* {
    outline: solid red;
} 

*/



/* Make the video cover the whole body */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ensures the video fills the screen without stretching */
  z-index: -1;       /* pushes the video behind all content */
}

body {
    margin: 0px;
}

#calculator-container {
    margin: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

#containerForKeyPadContainer {
    display: flex;
    gap: 3px;
}

#the-display {
    height: 50px;
    width: 193px;
    outline: solid whitesmoke;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-inline: 12px;
    color: whitesmoke;
    font-size: large;
    font-weight: 700;
    flex: 0 0 auto;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

#wrapper-calculator-container {
    outline: solid white;
    border-radius: 40px;
    margin: 150px;
}

#key-pad-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}