@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

:root {
  --main-bg-color: #d3f4d3;
}

html {
  box-sizing: border-box;
}

body{
  color: var(--main-bg-color);
  font-family: 'Poiret One', cursive;
  font-weight: normal;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  height: 250px;
  width: 300px;
  overflow: hidden;
  visibility: hidden;
  background-color: #d3f4d3;
}

/* // intro  */

.introText{
  color: #d3f4d3;
  z-index: 50;
  position: absolute;
}

h1{
  top: 55px;
  font-size: 1.6rem;
  left: 64px;
  margin: 0;
  font-weight: normal;
}

h1 span{
  font-size: 2rem;
  left: 74px;
  margin: 0;
  font-weight: normal;
}

h2{
  top: 135px;
  font-size: 1rem;
  left: 64px;
  margin: 0;
  font-weight: normal;
}

h3{
  top: 115px;
  font-size: 1.1rem;
  left: 100px;
  color: #d3f4d3;
  margin: 0;
  font-weight: normal;
}

/* Code below for the button */

.btn {
  height: 30px;
  width: 60px;
  background-color: rgb(0, 0, 0);
  position: fixed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  left: 10px;
  z-index: 100;
  color: white;
  box-shadow: none;
  border: none;
  font-size: 15px;
  border: 1px solid black;
}

.btn:hover {
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.8);
}

#pause {
  left: 10px;
  top: 260px;
}


/* Mask */

/* #id element {
  clip-path: url(#myMask);
} */

