@font-face {
                 font-family: myFirstFont;
                 src: url(/font/varelaround-regular.woff);
              }

              * {
                 font-family: myFirstFont;
              }

      body {
      	background: #323232;
        margin: 0;
      }

      p {
      	color: white;
      }
	
      li {
        color: white;
      }
		
h0 {
        font-size: 80px;
       margin-left: 20%;
        margin-right: 20%;
      }

      h1 {
        font-size: 60px;
       margin-left: 20%;
        margin-right: 20%;
      }
      
      h2 {
        font-size: 30px;
       margin-left: 20%;
        margin-right: 20%;
      }
      
      h3 {
        font-size: 20px;
        margin-left: 20%;
        margin-right: 20%;
      }
      
      h4 {
        font-size: 14px;
        margin-left: 20%;
        margin-right: 20%;
      }

.container {
  position: relative;
  text-align: center;
  color: white;
}

.centered {
  position: absolute;
  width: 100%;
 top: 0%;
  left: -20%;
}

.start-arrow-right {
position: relative;
  margin-left: 21%;
  top: 39;
  z-index: 101;

  transform: rotate(45deg);
  -webkit-transform: rotate(-45deg);

  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 8px;
}

.arrow-right {
position: relative;
  margin-left: 21%;
  top: 39;
  z-index: 101;

  transform: rotate(45deg);
  -webkit-transform: rotate(-45deg);

  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 8px;
  
  animation-name: transitionRight;
  animation-duration: 0.5s;
}

.start-arrow-down {
position: relative;
  margin-left: 21%;
  top: 34;
  z-index: 101;

  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);

  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 8px;
}

.arrow-down {
position: relative;
  margin-left: 21%;
  top: 34;
  z-index: 101;

  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);

  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 8px;
  
  animation-name: transitionDown;
  animation-duration: 0.5s;
}

.entireCollapsible {
	margin-left: 20%;
	width: 60%;
	box-shadow: 0px 0px 20px black;
}  
  
.collapsible {
	width: 100%;
  background-color: #969696;
  color: white;
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: center;
  outline: none;
  font-size: 20px;
}

.content {
	color: white;
  font-size: 14px;
  padding: 2% 2%;
  display: none;
  overflow: hidden;
  background-color: #7d7d7d;
}

.block {
  box-shadow: 0px 0px 6px black;
  display: block;
  width: 100%;
  border: none;
  background-color: #649664;
  color: white;
  padding: 14px 28px;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.block:hover {
  background-color: #FFFFFF;
  color: black;
}

@keyframes transitionDown {
  from {position: relative;
  margin-left: 21%;
  top: 39;
  z-index: 101;

  transform: rotate(45deg);
  -webkit-transform: rotate(-45deg);

  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 8px;}
  to {position: relative;
  margin-left: 21%;
  top: 34;
  z-index: 101;

  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);

  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 8px;}
}

@keyframes transitionRight {
  from {position: relative;
  margin-left: 21%;
  top: 34;
  z-index: 101;

  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);

  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 8px;}
  
  to {position: relative;
  margin-left: 21%;
  top: 39;
  z-index: 101;

  transform: rotate(45deg);
  -webkit-transform: rotate(-45deg);

  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 8px;}
}