
/* this is a css reset that makes sure the browser won't add any unexpected margins or padding to your page */
body, html{
  margin:0;
  padding:0;
  box-sizing: border-box;
  background-color: rgb(255, 247, 229);
}


/* call an element from your html and style it here! */
/* for example... */

p{
  font-size: 30px;
  color: black;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  padding-left: 10px;
}

.explanation{
  font-family: 'Courier New', Courier, monospace;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.instructions{
  font-family: 'Courier New', Courier, monospace;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.time{
  font-family: 'Courier New', Courier, monospace;
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 10px;
}

.materials-container{
  font-family: 'Courier New', Courier, monospace;
  padding-left: 10px;
}

marquee{
  background-color: black;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  height: 20px;
}

span{
  padding-right: 200px;
}

.sketch-block{
  height: 50px;
  width: 100%;
  position: absolute;
  background-color: rgb(255, 247, 229);
  font-size: 0%;
  z-index: 3;
}

.sketch-block-outline{
  height: 52px;
  width: 100%;
  position: absolute;
  background-color: rgb(237, 237, 237);
  font-size: 0%;
  z-index: 2;
}

.sketch{
  height: 100%;
  width: 100%;
}

iframe{
  height: 350px;
  width: 100%;
  z-index: 1;
  /* width: fit-content; */
  /* flex-direction: column; */
  /* justify-content: center; */
}

.copyright{
  position: absolute;
  bottom: 0;
  right: 0;
  padding-bottom: 7px;
  padding-right: 10px;
  text-align: right;
  font-family: 'Courier New', Courier, monospace;
  color: rgb(168, 168, 168);
}

/* .sketch {
  height:100%;
  width:100%;
} */

#btn{
  margin-top: 2rem;
  padding: 10px;
  font-family: 'Courier New', Courier, monospace;
  /* background: black; */
  display: inline-block;
  color: black;
  border-radius: 25%;
}

#btn:hover{
  color: red;
}

@media (max-width: 768px){
  .iframe{
    justify-content: center;
  }
}

@media (max-width: 425px){
  .sketch{
    display: none;
  }
}