/* Add any custom styling here */
body {
  margin: 0;
  overflow: hidden;
  position: relative;
  background-color: black;
}
/* #myCanvas {
  width: 100%;
  height: 100%;
} */
.headerBottom{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0px 40px;
  width: calc(100% - 80px);
  margin-bottom: 20px;
  bottom: 40px;
}
h1 {
  /* position: absolute; */
  margin:0;
  color: white;
  top: 300px;
  text-align: center;
  /* text-transform: uppercase; */
  pointer-events: none;
  user-select: none;
  font-size: 42px;
  text-shadow: 2px 2px 2px black;
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-right: auto;
}

#changeModelBtn{
  /* position: absolute; */
  top: 25px;
  left: 25px;
  width: 250px;
  height: 50px;
  font-size: 44px;
  color: white;
  text-shadow: 2px 2px 2px black;
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: black;
  border: 2px white solid;
  border-radius: 12px;
  box-shadow: 4px 4px white;
  margin-left: auto;
  white-space: nowrap;
}
#changeModelBtn:hover{
  background-color: rgb(48, 48, 48);
}
#changeModelBtn:active{
  color:black;
  background-color: white;
}

@media screen and (max-width: 600px) {
  .headerBottom {
    flex-direction: column;
  }

  #changeModelBtn{
    margin: 0px;
    font-size: 30px;
}
  h1{
    font-size: 36px;
    margin:0px;
  }
}

@media screen and (max-width: 400px) {
  .headerBottom{
    gap: 12px;
  }
  #changeModelBtn{
    width: 120px;
    height: 30px;
    font-size: 20px;
  }
  h1{
    font-size: 24px;
  }
}