html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  font-family: "Verdana", "Arial", sans-serif;
}
h2 {
  text-align: center;
  font-family: "Verdana", "Arial", sans-serif;
}
p {
  text-align: center;
  font-family: "Verdana", "Arial", sans-serif;
}
button {
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 16px;
  text-align: center;
}
a {
  color: black; 
  text-decoration: none;
}
a:visited {
  color: black;
  text-decoration: none;
}

.title {
  text-align: center;
}

.robot-image-container {
  display: flex;
  position: absolute;
  right: 55%;
  width: min(30%,500px);
  height: auto;
  border-style: solid;
  border-radius: 5%;
  justify-content: center;
  align-items: center;
}

.robot-image {
  display: block;
  width: 90%;
  height: auto;
}

.robot-customize {
  display: block;
  position: absolute;
  left: 55%;
  width: min(30%,500px);
  height: auto;
}

.choice-container{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.left-button{
    position: absolute;
    left: 0px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.right-button{
    position: absolute;
    right: 0px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.info-text{
    font-size: 24px;
}


.page-button {
  background-color: #bce3e0;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  color: #868af0;
  font-weight: bold;
  padding: 1px 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 5px 6px rgb(169, 219, 215, 0.4);
}
.page-button:hover {
  background-color: #b1f2ed;
  box-shadow: 0 7xp 10px rgb(167, 204, 201, 0.6);
}
