@font-face {
  font-family: 'Sekuya';
  src: url('fonts/Sekuya-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Arimo';
  src: url('fonts/Arimo-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
header {
  background-color: #f1eff9;
  padding: 20px;
  font-stretch: ultra-expanded;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  font-style: oblique;
  font-family: 'Arimo';
  color: #403e4a;
}

h1 {
  padding: 5px;
  text-align: center;
  font-stretch: ultra-expanded;
  font-size: 20px;
  font-weight: 900;
  font-style: oblique;
  font-family: 'Arimo';
  color: #8277C4;
}

h2 {
  padding: 5px;
  text-align: left;
  font-stretch: ultra-expanded;
  font-size: 18px;
  font-weight: 900;
  font-style: oblique;
  font-family: 'Arimo';
  color: #544c86;
}

/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
}

body {
  background-color: #f1eff9;
  margin: 0;                /* Removes the default browser margin */
  min-height: 100vh;
}


/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  background-color: #f1eff9;
  padding: 10px;
  font-family: 'Arimo';
}

/* Style the footer */
footer {
  background-color: #f1eff9;
  padding: 10px;
  text-align: center;
  color: black;
}

.parallax {
  /* The image used */
  /*background-image: url(https://www.aces.edu/wp-content/uploads/2023/04/iStock-1232014586.jpg);

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f1eff9;
}
/*
#8277C4 --Tangerine
*/
/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  width: 20%;
  background: #f1eff9;
  padding: 20px;
  display: block;
}

nav {
  float: none;
  width: 100%;
  background: #f1eff9;
  padding: 10px 20px;
  display: block;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
}

.button {
  border: none;
  color: #3b0a81;
  font-family: 'Arimo';
  padding: 15px 50px;
  border-radius: 10px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  transition-duration: 0.6s;
}

.button:hover {
  background-color: #D77723;
  color: white;
}

/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 33.33%;
  align-items: center;
  padding: 5px;
}

.row {
  background-color: #f1eff9;
}

/* Clear floats after image containers */
.row::after {
  background-color: #f1eff9;
  content: "";
  clear: both;
  align-items: center;
  display: table;
}

.collapsible {
  background-color: #f1eff9;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 18px;
  border: 8px #3b0a81;;
}

.active, .collapsible:hover {
  background-color: #D77723;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: white;
  border: 8px solid #D77723;
}

img {
  border: 3px solid black;
}