*{
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial;
    padding: 10px;
    background: #f2f1eb;;
  }
  
  /* Header/Blog Title */
  .header {
    padding: 30px;
    text-align: center;
    background: rgb(5, 255, 59);
    background-image: url(images/Sampson\ Coding.png);
    background-size: cover;
    background-repeat: repeat;
    z-index: -1;
    background-position: 50% 60%;
  }
  
  .header h1 {
    font-size: 50px;
  }
  
  /* Style the top navigation bar */
  .topnav {
    overflow: hidden;
    background-color: #a0b18e;
  }
  
  /* Style the topnav links */
  .topnav a {
    float: left;
    display: block;
    color: #5b7451;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change color on hover */
  .topnav a:hover {
    background-color: #b008f3;
    color: rgb(25, 0, 255);
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {   
    float: left;
    width: 75%;
  }
  
  /* Right column */
  .rightcolumn {
    float: left;
    width: 25%;
    background-color: #f2f1eb;;
    padding-left: 20px;
  }
  
  /* Fake image */
  .fakeimg {
    background-color: #b0c1b3;
    width: 100%;
    padding: 20px;
  }
  
  /* Add a card effect for articles */
  .card {
    background-color: #587162;
    padding: 20px;
    margin-top: 20px;
  }
  
  /* Clear floats after the columns */
  .row::after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Footer */
  .footer {
    padding: 20px;
    text-align: center;
    background: #233827;
    margin-top: 20px;
    font-family: Athiti;
  }

  h2{
    color:#233827;
    font-family: Athiti;
  }
  
  h3{
    color: #587162;
  }

  p{
    color:#233827;
    font-family: Athiti;
  }
  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {   
      width: 100%;
      padding: 0;
    }
  }
  
  /* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
  @media screen and (max-width: 400px) {
    .topnav a {
      float: none;
      width: 100%;
    }
  }


  /*ticket button?*/
  
.type--A {
  --line_color: #a0b18e;
  --back_color: transparent;

  font-family: Athiti;
 
}

.button {
  position : relative;
  z-index : 0;
  text-decoration : none;
  font-weight : bold;
  color : var(--line_color);
  letter-spacing : 2px;
  transition : all .3s ease;
}

.button__text {
  display : flex;
  justify-content : center;
  align-items : center;
  width : 100%;
  height : 100%;
}

.button::before, .button::after, .button__text::before, .button__text::after {
  content : '';
  position : absolute;
  height : 3px;
  border-radius : 2px;
  background : var(--line_color);
  transition : all .5s ease;
}

.button::before {
  top : 0;
  left : 54px;
  width : calc( 100% - 56px * 2 - 16px );
}

.button::after {
  top : 0;
  right : 54px;
  width : 8px;
}

.button__text::before {
  bottom : 0;
  right : 54px;
  width : calc( 100% - 56px * 2 - 16px );
}

.button__text::after {
  bottom : 0;
  left : 54px;
  width : 8px;
}

.button__line {
  position : absolute;
  top : 0;
  width : 56px;
  height : 100%;
  overflow : hidden;
}

.button__line::before {
  content : '';
  position : absolute;
  top : 0;
  width : 150%;
  height : 100%;
  box-sizing : border-box;
  border-radius : 300px;
  border : solid 3px var(--line_color);
}

.button__line:nth-child(1),
.button__line:nth-child(1)::before {
  left : 0;
}

.button__line:nth-child(2),
.button__line:nth-child(2)::before {
  right : 0;
}

.button:hover {
  letter-spacing : 4px;
}

.button:hover::before,
.button:hover .button__text::before {
  width : 8px;
}

.button:hover::after,
.button:hover .button__text::after {
  width : calc( 100% - 56px * 2 - 16px );
}

.button__drow1,
.button__drow2 {
  position : absolute;
  z-index : -1;
  border-radius : 16px;
  transform-origin : 16px 16px;
}

.button__drow1 {
  top : -16px;
  left : 40px;
  width : 32px;
  height : 0;
  transform : rotate( 30deg );
}

.button__drow2 {
  top : 44px;
  left : 77px;
  width : 32px;
  height : 0;
  transform : rotate(-127deg );
}

.button__drow1::before,
.button__drow1::after,
.button__drow2::before,
.button__drow2::after {
  content : '';
  position : absolute;
}

.button__drow1::before {
  bottom : 0;
  left : 0;
  width : 0;
  height : 32px;
  border-radius : 16px;
  transform-origin : 16px 16px;
  transform : rotate( -60deg );
}

.button__drow1::after {
  top : -10px;
  left : 45px;
  width : 0;
  height : 32px;
  border-radius : 16px;
  transform-origin : 16px 16px;
  transform : rotate( 69deg );
}

.button__drow2::before {
  bottom : 0;
  left : 0;
  width : 0;
  height : 32px;
  border-radius : 16px;
  transform-origin : 16px 16px;
  transform : rotate( -146deg );
}

.button__drow2::after {
  bottom : 26px;
  left : -40px;
  width : 0;
  height : 32px;
  border-radius : 16px;
  transform-origin : 16px 16px;
  transform : rotate( -262deg );
}

.button__drow1,
.button__drow1::before,
.button__drow1::after,
.button__drow2,
.button__drow2::before,
.button__drow2::after {
  background : var( --back_color );
}

.button:hover .button__drow1 {
  animation : drow1 ease-in .06s;
  animation-fill-mode : forwards;
}

.button:hover .button__drow1::before {
  animation : drow2 linear .08s .06s;
  animation-fill-mode : forwards;
}

.button:hover .button__drow1::after {
  animation : drow3 linear .03s .14s;
  animation-fill-mode : forwards;
}

.button:hover .button__drow2 {
  animation : drow4 linear .06s .2s;
  animation-fill-mode : forwards;
}

.button:hover .button__drow2::before {
  animation : drow3 linear .03s .26s;
  animation-fill-mode : forwards;
}

.button:hover .button__drow2::after {
  animation : drow5 linear .06s .32s;
  animation-fill-mode : forwards;
}

@keyframes drow1 {
  0%   { height : 0; }
  100% { height : 100px; }
}

@keyframes drow2 {
  0%   { width : 0; opacity : 0;}
  10%  { opacity : 0;}
  11%  { opacity : 1;}
  100% { width : 120px; }
}

@keyframes drow3 {
  0%   { width : 0; }
  100% { width : 80px; }
}

@keyframes drow4 {
  0%   { height : 0; }
  100% { height : 120px; }
}

@keyframes drow5 {
  0%   { width : 0; }
  100% { width : 124px; }
}


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}