*{
  font-family: "Rubik Vinyl", serif;
  font-style: normal;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #D0D0D0;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
h1{
  font-size: 3.5rem;
}

 
button{
  aspect-ratio: 10;
  cursor: pointer;
  border-radius: 44rem;
  font-weight: bold;
  background: transparent;
}

body.st-page button{
  border: none;
}

canvas {
  border: 2px solid black;
  margin-top: 20px;
}

#board{
 border: none;
 box-shadow: 5px 5px 15px 8px rgba(5, 5, 227, 0.251)
}

.container {
  width: 85vw;
  height: 65vh;
  justify-content: center;
  align-items: center;
}

.main-image {
  position: relative;
  width: 400px;
  height: 550px;
  background: url(photos/machine.png) no-repeat center/cover;
}

.small-image {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
}

.small-image.one {
  top: 30%;
  left: 30%;
  transform: translate(-40%, 73%);
  background: url(photos/sLogo.png) no-repeat center/cover;
}

.small-image.two {
  bottom: 30%;
  right: 30%;
  transform: translate(40%, -40%);
  background: url(photos/STLogo.png) no-repeat center/cover;
}

#instruction{
font-weight: bold;
margin-top: 15px;
}

.dark-mode {
background-color: #121212;
color: white;
}

.light-mode {
background: radial-gradient(circle, #E9D254, white);
color: black;
}

#toggle-icon {
width: 50px;  
height: 50px;
}

#main-image-element{
  width: 550px;
height: 550px;
}