* {
  box-sizing: border-box;

}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  animation: 1s ease-out 0s 1 slideInFromLeft;
  background-color: #fffff0;
}

.header {
  margin-left: 200px;
  padding-left: 20px;
}

h3{
  border-left: 5px solid #f9df74;
  margin: 0, 1.5rem;
}

/* Style the side navigation */
.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(142,113,213);
  overflow-x: hidden;
  animation: 1s ease-out 0s 1 slideInFromLeft;
}


/* Side navigation links */
.sidenav a {
  color: white;
  padding: 16px;
  text-decoration: none;
  display: block;
  margin-left: 20px;
}

/* Change color on hover */
.sidenav a:hover {
  background-color: rgb(180,158,244);
  color: black;
}

/* Style the content */
.content {
  display: flex;
  flex-direction: column;
  animation: 1s ease-out 0s 1 slideInFromLeft;
  display: flex;
  flex-direction: column;
}

.example-box {
  text-align: left;
  margin-left: 200px;
  padding-left: 20px;
}

.color-container{
  margin-right: 3rem;
  margin-left: 180px;
  display: flex;
  flex-direction: column;
  padding: 3rem;
}
.color-1 {
  width: 100px;
  height: 100px;
  background-color: #53239B;
  color:white;
  margin: 10px;

}
.color-2 {
  width: 100px;
  height: 100px;
  background-color: #CCBFED;
  margin: 10px;
}
.color-3 {
  width: 100px;
  height: 100px;
  background-color: #8CACF4;
  margin: 10px;
}
.color-4 {
  width: 100px;
  height: 100px;
  background-color: #CCE3FB;
  margin: 10px;
}
.color-5 {
  width: 100px;
  height: 100px;
  background-color: #F9DF74;
  margin: 10px;
}

.color-1,
.color-2,
.color-3,
.color-4,
.color-5 {
  display: flex;
  flex-direction: column;
} 

.color-content{
  display: flex;
  flex-direction: column;
  width: 50rem;
}

.effect {
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: orange;
  text-transform: capitalize;
  /* background-color: - add your own background-color */
  font-family: 'Montserrat', sans-serif; /* put your font-family */
  font-size: 18px;
  padding: 20px 0px;
  width: 150px;
  border-radius: 10px;
  overflow: hidden;
}

.effect.effect-4 {
  transition: all 0.5s linear 0s;
  animation: fadeIn 2s ;
}

.effect.effect-4:before {
  content: "\f178";
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 30px;
  transform: scale(0,3);
  transition: all 0.1s linear 0s;
}

.effect.effect-4:hover {
  text-indent: -9999px;
}

.effect.effect-4:hover:before {
  transform: scale(1,1);
  text-indent: 0;
}

.contrast-screenshot{
  width: 90%;
  display: block;
}

.contrast-checker{
  margin:2rem;
  display: block;
}

.color-description{
  display: flex;
  flex-direction: row;
}


.circle-content {
  position: relative; 
  z-index: 1; 
  padding: 20px;
}

.background-circles {
  position: fixed;
  width: 100vw;
  height: 100%;
  z-index: -999; 
  left:100px;
  bottom:300px
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle-1 {
  background-color: #8CACF4;
  width: 594.5px;
  height: 341.5px;
  margin-top: 185px;
}

.circle-2 {
  background-color: #CCE3FB;
  width: 910.5px;
  height: 250px;
  margin-top: 185px;
}




@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}