/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #E9D995;
  opacity: 1;
  background-image: linear-gradient(to right, #DFC990, #DFC990 8.5px, #E9D995 8.5px, #E9D995 );
  background-size: 17px 100%;
    overflow: auto;
}

@font-face {
  font-family: DarlingCoffee;
  src: url(https://theclumsychocobo.neocities.org/DarlingCoffee.ttf);
}

@font-face {
  font-family: NextSunday;
  src: url(https://theclumsychocobo.neocities.org/NextSunday.ttf);
}

.buttonlinks {
  color: #B78523;
  padding: 25px 109px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 50px;
  cursor: pointer;
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.6)
}

.contbuttons {
    font-family: DarlingCoffee;
    background: #E5E1D0;
    border-top-left-radius: 19px;
    border-top-right-radius: 19px;
    width: 1265px;
    height: 100px;
    margin-left: 10px;
    margin-top: 10px;
}

.htext {
    font-family: DarlingCoffee;
    color: #B78523;
    font-size: 60px;
    padding-top: 75px;
    padding-left: 140px;
    padding-bottom: 10px;
}

.infotxt {
    color: #262626;
    font-size: 20px;
    padding: 10px 100px;
    font-family: NextSunday;
}

.credit {
    color: #262626;
    font-size: 15px;
    padding-left: 400px;
    margin-bottom: 40px;
    font-family: NextSunday;
}


/* ------------------------------------------------------------------------------------------------------------- */


/* Index page */
.contheader {
    background: #2D2D2D;
    background: linear-gradient(180deg, rgba(45, 45, 45, 1) 0%, rgba(15, 15, 15, 1) 100%);
    margin: auto;
    width: 1300px;
    height: 1445px;
    border: solid #E3E2E1 7px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.contcontent {
    background: #E5E1D0;
    border-bottom-left-radius: 19px;
    border-bottom-right-radius: 19px;
    max-width: 1265px;
    height: 1300px;
    margin-left: 10px;
    margin-top: 10px;
}

.presentationtxt {
    color: #262626;
    font-size: 20px;
    padding: 10px 100px;
    font-family: NextSunday;
}

.presentationname {
    color: #262626;
    font-size: 40px;
    padding: 10px 100px;
    font-family: NextSunday;
}

.moretocome {
    color: #262626;
    font-size: 40px;
    padding: 10px 100px;
    font-family: NextSunday;
    float: right;
}


/* ------------------------------------------------------------------------------------------------------------- */


/* Venue page */
.venuecontheader {
    background: #2D2D2D;
    background: linear-gradient(180deg, rgba(45, 45, 45, 1) 0%, rgba(15, 15, 15, 1) 100%);
    margin: auto;
    width: 1300px;
    height: 3144px;
    border: solid #E3E2E1 7px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.venuecontcontent {
    background: #E5E1D0;
    border-bottom-left-radius: 19px;
    border-bottom-right-radius: 19px;
    max-width: 1265px;
    height: 3000px;
    margin-left: 10px;
    margin-top: 10px;
}


/* ------------------------------------------------------------------------------------------------------------- */


/* Discord page */
.discordcontheader {
    background: #2D2D2D;
    background: linear-gradient(180deg, rgba(45, 45, 45, 1) 0%, rgba(15, 15, 15, 1) 100%);
    margin: auto;
    width: 1300px;
    height: 450px;
    border: solid #E3E2E1 7px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.discordcontcontent {
    background: #E5E1D0;
    border-bottom-left-radius: 19px;
    border-bottom-right-radius: 19px;
    max-width: 1265px;
    height: 305px;
    margin-left: 10px;
    margin-top: 10px;
}

.discordinvite {
    color: #D9B633;
    text-decoration: none;
    display: inline-block;
    font-size: 60px;
    cursor: pointer;
}


/* ------------------------------------------------------------------------------------------------------------- */


/* Modal images */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
}

.gallery-item {
  width: calc(30% - 20px);
  height: auto;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.5s ease;
}

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

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

/* Modal content (image) */
.modal-content {
  position: relative;
  width: 90%;
  height: auto;
  max-width: 90%;
  height: 90%;
  border-radius: 5px;
  overflow: hidden;
  animation: zoomIn 0.5s;
}

@keyframes zoomIn {
  from {transform: scale(0.6);}
  to {transform: scale(1);}
}

.modal.show {
  display: flex;
  opacity: 1;
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

/* Caption of modal image */
.caption {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .gallery-item {
     width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .gallery-item  {
    width: calc(100% - 20px);
  }
}