
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
.eventBody{
  padding-bottom: 200px;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}

.hidden,
[hidden] {
  display: none !important;
}
.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}


@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
body {
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 60px;
}



h1 {
  text-align: center;
  justify-content: center;
  font-family: Aldrich, serif;
  margin-top: 5%;
  font-size: 50px;
}


.line-1{
  display: flex;
  position: fixed;
  top: 20%;
  right: 10px;
  margin: 0 auto;
  border-right: 2px solid rgba(255,255,255,.75);
  font-size: 180%;
  text-align: right;
  white-space: pre;
  overflow: hidden;
}
.gallery-section {
  padding: 50px 0;
  text-align: center;
  background-color: #fff;
}

.gallery-title {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-item {
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.gallery-item img {
  width: 300px;
  height: 200px;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  font-size: 1.2em;
  position: relative;
  bottom: 70px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.card-section {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  gap: 20px;
}

.card {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 30%;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: rgba(17,27,71,1);
}

.card-description {
  font-size: 1em;
  color: #666;
}
.resources-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.resources-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #007bff;
}

.resources-description {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #666;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.resource-item {
  background-color: rgba(231,236,255,1);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.resource-item:hover {
  transform: translateY(-5px);
}

.resource-name {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: rgba(17,27,71,1);
}

.resource-description {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

.resource-link {
  font-size: 1em;
  color: rgba(0, 19, 255, 0.75);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease-in-out;
}

.resource-link:hover {
  color: #0056b3;
}
.resource-background{
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("/img/binary.png");
  opacity: 1;
  position: relative;
}


.coming-soon{
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("/img/board.png");
  opacity: 1;
  position: relative;
}
.coming-soon-text-block{
  width: 587px;
  height: 337px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 54px;
  left: 87px;
  overflow: hidden;
}
.coming-soon-text {
  width: 473px;
  color: rgba(9,17,51,1);
  position: relative;
  top: 0;
  left: 0;
  font-family: Aldrich, serif;
  font-size: 64px;
  opacity: 1;
  text-align: left;
}
.coming-soon-button{
  width: 387px;
  height: 62px;
  background: rgba(17,27,71,1);
  opacity: 1;
  position: absolute;
  top: 150px;
  right: 100px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
  font-size: 40px;
  font-family: Aldrich, serif;
  text-align: center;
  color: white;
  text-decoration: none;
}

/*Hero*/
.hero {
  width: 100%;
  height: 701px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: relative;
  left: 0;
  overflow: hidden;
}
.hero-text-block{
  width: 587px;
  height: 337px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 54px;
  left: 87px;
  overflow: hidden;
}
.hero-text {
  width: 473px;
  color: rgba(9,17,51,1);
  position: relative;
  top: 0;
  left: 0;
  font-family: Aldrich, serif;
  font-size: 64px;
  opacity: 1;
  text-align: left;
}
.join-button {
  width: 287px;
  height: 52px;
  opacity: 1;
  position: absolute;
  top: 460px;
  left: 106px;
  overflow: hidden;
}
.hero-button {
  width: 287px;
  height: 52px;
  background: rgba(17,27,71,1);
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
.hero-button-text {
  width: 287px;
  color: rgba(255,255,255,1);
  position: absolute;
  top: 13px;
  left: 0;
  font-family: Roboto, serif;
  text-decoration: none;
  font-size: 16px;
  opacity: 1;
  text-align: center;
}
.hero-img{
  width: 500px;
  height: 500px;
  opacity: 1;
  position: absolute;
  top: 50px;
  right: 100px;
}
@media screen and (max-width: 1300px) {
  .hero-img{
    display: none;
  }
  .hero {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url("/img/natural.png");
  }
}
@media screen and (max-width: 600px) {
  .hero {
    width: 100%;
    height: 600px;
    background-image: url("/img/board.png");
    opacity: 1;
    position: relative;
    left: 0;
    overflow: hidden;
  }
  .hero-text-block{
    width: 330px;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    opacity: 1;
    position: absolute;
    top: 54px;
    left: 87px;
    overflow: hidden;
  }
  .hero-text {
    width: 83px;
    color: rgba(9,17,51,1);
    position: relative;
    top: 0;
    left: 0;
    font-family: Aldrich, serif;
    font-size: 54px;
    opacity: 1;
    text-align: center;
  }
  .hero-img{
    display: none;
  }
  .join-button {
    width: 287px;
    height: 52px;
    opacity: 1;
    position: absolute;
    top: 560px;
    left: 65px;
    overflow: hidden;
  }
  .coming-soon-text-block{
    width: 387px;
    height: 237px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 1;
    position: absolute;
    top: 54px;
    left: 37px;
    overflow: hidden;
  }
  .coming-soon-text {
    width: 303px;
    color: rgba(9,17,51,1);
    position: relative;
    top: 0;
    left: 0;
    font-family: Aldrich, serif;
    font-size: 40px;
    opacity: 1;
    text-align: left;
  }
  .coming-soon-button{
    width: 287px;
    height: 52px;
    background: rgba(17,27,71,1);
    opacity: 1;
    position: absolute;
    top: 350px;
    left: 65px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    overflow: hidden;
    font-size: 30px;
    font-family: Aldrich, serif;
    text-align: center;
    color: white;
    text-decoration: none;
  }


}
@media screen and (max-width: 400px) {
  .hero-text-block{
    width: 230px;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 1;
    position: absolute;
    top: 54px;
    left: 87px;
    overflow: hidden;
  }
  .hero-text {
    width: 83px;
    color: rgba(9,17,51,1);
    position: relative;
    top: 0;
    left: 0;
    font-family: Aldrich, serif;
    font-size: 44px;
    opacity: 1;
    text-align: center;
  }
  .join-button {
    width: 287px;
    height: 52px;
    opacity: 1;
    position: absolute;
    top: 460px;
    left: 50px;
    overflow: hidden;
  }

}



