body, html {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;

}

a {
  color:lightblue;
}

.logo {
  max-width: 100px;
  height: auto;
  margin: 0 10px; /* Ensure logos are spaced out */
}

.recursive, .content {
  position: relative;
  min-height:200px;
  margin:0px auto;
  width: 800px;
}

.recursive {
  position: relative;
  top: 20px;


}

@media (max-width: 600px) {
  .header, .intro {
      flex-direction: column;
  }
}


.start-button {
  background-color: #007BFF; /* Blue color to match the Five9 theme */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px; /* Rounded edges */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  box-shadow: 0 4px 8px 0 rgba(0, 123, 255, 0.5); /* Drop shadow with a blue tint */
  transition: all 0.3s ease 0s;
}

.start-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  box-shadow: 0 6px 12px 0 rgba(0, 123, 255, 0.7);
}

button#start-button[disabled] {
  background-color: lightslategray;
  
}

#down-arrow {
  display:none;
}

.down-arrow {
  position:fixed;
  /* display:none; */
  top: calc(100vh - 260px);
  left: 67px;
  width: 0;
  height: 30px;
  /* border: 10px solid;
  border-radius: 4px; */
  animation: jumpInfinite 1.5s infinite;
  font-size: 10em;
  font-weight: bolder;
  color: #0061af;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.down-arrow:after {
  content: " ";
  position: absolute;
  top: 12px;
  left: -10px;
  width: 16px;
  height: 16px;
  /* border-bottom: 10px solid;
  border-right: 10px solid;
  border-radius: 10px; */
  transform: rotateZ(45deg);
}

@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 20px;
  }
  100% {
    margin-top: 0;
  }
}