<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
    <script src="script.js"></script>
  </head>

  <body>
      <h1>Sign-Up Instructions</h1>

<div id="crumbs">
    <ul>
      <li class='bullet'>∗</li>
    <li><a href="#1"><b>STEP 1:</b><br>Sign up and pay for<br>the options<br> you want</a></li>
    <li class='bullet'>∗</li>
    <li><a href="#2"><b>STEP 2:</b><br>Sign up for<br>online sessions<br>(held most weeks)</a></li>
    <li class='bullet'>∗</li>
    <li><a href="#3"><b>STEP 3:</b><br>Mock<br>OSCEs</a></li>
    <li class='bullet'>∗</li>
    <li><a href="#4"><b>STEP 4<br>(OPTIONAL):</b><br>Attend private<br>tutoring</a></li>
    <li class='bullet'>∗</li>
</ul>
</div>
  </body>

</html>
h1 {
  margin-bottom: 20px;
  color: #4679bd;
  font-weight: 400;
  text-align: center;
  font-family: Verdana, Geneva, sans-serif;
}

body {
  margin: 0px;
  font-family: Helvetica;
  background: #f3f3f3;
  line-height: 25px;
}

#crumbs {
  text-align: center;
  margin-left: 1em;
  margin-right: 1em;
}

#crumbs ul {
  list-style: none;
  display: inline-table;
  position: relative;
}

#crumbs ul li {
  display: inline;
}

#crumbs ul li a {
  display: block;
  float: left;
  height: 130px;
  background: #8bdbed;
  text-align: center;
  padding: 50px 0 0 120px;
  position: relative;
  margin: 0 10px 0 0;
  font-size: 20px;
  text-decoration: none;
  color: black;
  line-height: 25px;
}

#crumbs ul li a:after {
  content: "";
  border-top: 90px solid transparent;
  border-bottom: 90px solid transparent;
  border-left: 90px solid #8bdbed;
  position: absolute;
  right: -90px;
  top: 0;
  z-index: 1;
}

#crumbs ul li a:before {
  content: "";
  border-top: 90px solid transparent;
  border-bottom: 90px solid transparent;
  border-left: 90px solid #f3f3f3;
  position: absolute;
  left: 0;
  top: 0;
}

#crumbs ul li:first-child a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 20px;
}

#crumbs ul li:first-child a:before {
  display: none;
}

#crumbs ul li:last-child a {
  padding-right: 30px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

#crumbs ul li:last-child a:after {
  display: none;
}

.bullet {
  font-size: 50px;
  color: #000;
  text-align: center;
  margin: 20px auto;
}


/* Responsive */

@media (max-width: 1100px) {
  #crumbs ul {
    display: block;
    margin-left: 20%;
    margin-right: 20%;
  }
  #crumbs ul li {
    display: block;
    width: 100%;
  }
  #crumbs ul li a {
    float: none;
    padding: 20px 0 0 0;
    margin: 0 0 5px 0;
  }
  #crumbs ul li a:before,
  #crumbs ul li a:after {
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
  }
  #crumbs ul li:first-child a {
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  #crumbs ul li:last-child a {
    border-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-right: 0;
  }
}


/*Max width for smaller screen size*/

@media(max-width: 700px) {
  #crumbs ul {
    display: block;
    margin-left: 5%;
    margin-right: 10%;
  }
  #crumbs ul li {
    display: block;
    width: 100%;
  }
  #crumbs ul li a {
    float: none;
    padding: 10px 0 0 0;
    margin: 0 0 5px 0;
  }
  #crumbs ul li a:before,
  #crumbs ul li a:after {
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
  }
  #crumbs ul li:first-child a {
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  #crumbs ul li:last-child a {
    border-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}