body {
    background-color: #333333;
  }
  
  .container {
    position: relative;
    height: 100vh;
  }
  
  .disc {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(to bottom right, #00ff00, #008000);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  h1 {
    font-size: 80px;
    color: #ffffff;
    margin: 0;
  }
  







.box {
    width: 200px;
    height: 200px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    line-height: 200px;
    margin: 10px;
  }
  
  /* Display Examples */
  .block {
    display: block;
  }
  
  .inline {
    display: inline;
  }
  
  .inline-block {
    display: inline-block;
  }
  
  .none {
    display: none;
  }
  
  /* Position Examples */
  .absolute {
    position: absolute;
    top: 50px;
    left: 50px;
  }
  
  .fixed {
    position: fixed;
    top: 50px;
    right:250px;
  }
  
  .relative {
    position: relative;
  }
  
  .sticky {
    position: sticky;
    top: 50px;
  }
  
  /* Transform Examples */
  .translate {
    transform: translate(50px, 50px);
  }
  
  .scale {
    transform: scale(1.5);
  }
  
  .rotate {
    transform: rotate(45deg);
  }
  
  .skew {
    transform: skew(20deg, 10deg);
  }



  body {
  background-color: #333333;
}

.container {
  position: relative;
  height: 100vh;
}

.disc {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(to bottom right, #00ff00, #008000);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 80px;
  color: #ffffff;
  margin: 0;
}

  