* {

  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  height: 200vh;
}

.window {
  font-family: Arial, Helvetica, sans-serif;
  font-size: large;
  padding: 50px 200px;
}

.container {
  position: relative;
  height: 400px;
  margin: 100px;
  background-color: rgb(210, 167, 250);
  border: 2px solid rgb(96, 75, 102);
  border-radius: 5px;
  box-shadow: 2px 14px 16px -10px rgba(0, 0, 0, 0.75);
  transition: 2s;
  overflow-y: scroll;
}
.contPos{
  position: absolute;
  top: 1%;
  right: 2%;
}

.box {
  color: azure;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  box-shadow: 2px 14px 16px -10px rgba(0, 0, 0, 0.75);

  &.altcolor {
    color: black;
  }
}

/* positional properties */

.static {
  position: static;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
  top: 0px;
}

/* interactables */

.buttons {
  display: flex;
  margin: 0 100px 20px;
  position: revert;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: azure;
  width: 80px;
  height: 23px;
  margin-right: 5px;
  border: 3px solid black;
  border-radius: 5px;
  box-shadow: 2px 14px 16px -11px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

/* colors */

#red {
  background-color: red;
}

#blue {
  background-color: blue;
}

#yellow {
  background-color: yellow;
}

#green {
  background-color: green;
}

#pink {
  background-color: pink;
}

#orange {
  background-color: orange;
}