/* GLOBAL------------------------------------------------------------------------------------------------------------------ */
:root {
  box-sizing: border-box; /* prevent overflow */
  scroll-behavior: smooth;
  --black: #000000;
  --white: #f5f5f5;
  --violett: #e6b8ff;
  --yellow: #fff700;
}

html {
  height: 100%; /* force footer to end of page */
}

@font-face {
  font-family: "ClashGrotesk-Bold";
  src: url(/data/ClashGrotesk/ClashGrotesk-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "ClashGrotesk-Regular";
  src: url(/data/ClashGrotesk/ClashGrotesk-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "ClashGrotesk-Light";
  src: url(/data/ClashGrotesk/ClashGrotesk-Light.ttf) format("truetype");
}

* {
  margin: 0px; /* default margins */
  padding: 0px; /* default padding */
  font-family: "ClashGrotesk-Bold";
  text-decoration: none;
}

body {
  height: 100%; /* force footer to end of page */
  display: flex; /* force footer to end of page */
  flex-direction: column; /* force footer to end of page */
  background-color: var(--white);
}

main {
  flex: 1 0 auto; /* force footer to end of page */
  color: var(--white);
  margin: 0px;
}

h1 {
  font-family: "ClashGrotesk-Bold";
  font-size: 5rem;
  color: black;
}

h2 {
  font-family: "ClashGrotesk-Bold";
  font-size: 4rem;
  color: black;
  margin-bottom: 20px;
}

.aboutText {
  font-family: "ClashGrotesk-Regular";
  font-size: 2rem;
  line-height: 3rem;
  color: var(--black);
  margin-left: 40px;
  margin-top: 200px;
}

a {
  font-family: "ClashGrotesk-Bold";
  font-size: 2rem;
  color: var(--black);
}

header {
  height: 100px;
  width: 100%;
}


.subpageHeader {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 35px;
  position: fixed;
}

.subpageHeaderEx{
  display: flex;
  position: absolute;
  width: 100%;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 35px;
}

.modeTitle {
  display: flex;
  margin-bottom: 5px;
  margin-left: 40px;
  width: 100%;
}

.modeContainer {
  display: flex;
  width: 100%;
  justify-content: end;
}

.modeText {
  display: flex;
  justify-content: center;
  z-index: 1;
  margin-right: 40px;
  margin-left: 15px;
  background: none;
  color:#E6B8FF;
  font-family: ClashGrotesk-Bold;
  font-size: 1.7rem;
  border: 0;
  cursor: pointer;
}
.modeText:hover,
.modeText:active {
  background-color: initial;
  background-position: 0 0;
  color: black;
}

#description p {
  width: 72%;
  padding: 50px;
  text-align: center;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative; /* Ensure relative positioning for absolute child elements */
  width: 100%;
}

.small-button-container {
  display: flex;
  position: fixed;
  justify-content: space-between;
  width: 500px;
  margin-top: 760px;
  margin-right: 40px;
  z-index: 9999;
}

.saveButton {
  position: fixed;
  display: flex;
  justify-content: center;
  z-index: 1;
  margin-top: 680px;
  margin-right: 40px;
  width: 500px;
  height: 60px; 
  background: var(--black);
  border-radius: 999px;
  box-sizing: border-box;
  color: var(--white);
  font-family: ClashGrotesk-Regular;
  font-size: 2.5rem;
  padding: 6px 20px;
  word-break: break-word;
  border: 0;
  cursor: pointer;
}

.saveButton:hover,
.saveButton:active {
  background-color: #E6B8FF;
  background-position: 0 0;
  color: var(--white);
}

.examplesButton {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  background: var(--black);
  border-radius: 999px;
  box-sizing: border-box;
  color: var(--white);
  font-family: ClashGrotesk-Regular;
  font-size: 1.5rem;
  padding: 6px 20px;
  word-break: break-word;
  border: 0;
  cursor: pointer;
  width: 240px;
  
}

.aboutButton {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  background: var(--black);
  border-radius: 999px;
  box-sizing: border-box;
  color: var(--white);
  font-family: ClashGrotesk-Regular;
  font-size: 1.5rem;
  padding: 6px 20px;
  word-break: break-word;
  border: 0;
  cursor: pointer;
  width: 45%;
  
}

.examplesButton:hover,
.examplesButton:active {
  background-color:  #E6B8FF;
  background-position: 0 0;
  color: var(--white);
}

.aboutButton:hover,
.aboutButton:active {
  background-color:  #E6B8FF;
  background-position: 0 0;
  color: var(--white);
}

#gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  margin-top: 150px;
  margin-bottom: 50px;
  margin-left: 40px;
  margin-right: 40px;
}

#gallery img {

  width: calc((100% / 3) - (40px / 3));
}
