html {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background-color:black;
  }
  
  .container{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center; 
    justify-content: center;
    background: url('./robot.gif');
        background-size: contain;
        background-position:  center;
        background-repeat: no-repeat;
        
    
  }
  button{
    cursor:pointer;
    outline: none;
    width: 200px;
    height: 50px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    color: aliceblue;
    background-color: brown;
    border-radius: 5px;
    box-shadow: 2px 2px 20px 10px rgba(255, 255, 255, 0.452);
    
  }
  button:hover{
    filter: brightness(150%);
  }
  button:active{
    transform: scale(0.98);
  }
  button:disabled{
    cursor: default;
    filter: brightness(80%);
  }
  .typeofjokes{
    margin-top: 1rem;
    transform: scale(0.95);
  }
  
  .typeofjokes button {
    margin: 5px;
    background-color: #3045c4;;
  }

  @media screen and (max-width:900px){

    .container{
      background-position: center center;

    }
    
  }