@font-face {
  font-family: 'SF-Pro-Rounded-Bold';
  src: url('/Fonts/SF-Pro-Rounded-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'SF-Pro-Rounded-Regular';
  src: url('/Fonts/SF-Pro-Rounded-Regular.otf') format('opentype');
}

body {
  background-attachment: fixed;
  background-image: linear-gradient(#000, #000, #CF9AF8, #9356F7);
  background-repeat: no-repeat;
}



h1 {
  color: white;
  font-size: 8vw;
  font-family: 'SF-Pro-Rounded-Bold';
  text-shadow: 0px 0px 20px #9356F7;
}

h2 {
  color: white;
  font-size: 6vw;
  font-family: 'SF-Pro-Rounded-Bold';
}

.noBgTitle {
  font-size: 3em;
  transition: all 400ms ease;
  height: 50px;
  overflow: hidden;
  line-height: 50px;
  display: inline-block;
}


.horizontalImage {
  width: 40%;
}

.horizontalImagePadding {
  width: 30%;
  margin-bottom: 20px;
  margin-right: 20px;
}

.horizontalText {
  color: white;
  font-family: 'SF-Pro-Rounded-Regular';
  padding-left: 10px;
}

.horizontalScreenshot {
  max-width: 30%;
  max-height: 500px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.whiteText {
  color: white;
}

.hoverShadow {
  font-family: 'SF-Pro-Rounded-Bold';
}

hr {
  border-color: #9356F7 !important;
  border-width: 1px !important;
  border: solid;
  box-shadow: 0px 0px 20px #9356F7;


}

a {
  text-decoration: none;
}

.rotatedIcon {
  rotate: 150deg;
  height: 200;
  z-index: -1;
}

.button {
  border-style: solid;
  border-color: #CF9AF8;
  color: white;
  background-color: #9356F777;
  border-radius: 5px;
  padding: 10px;
  padding-left: 30%;
  padding-right: 30%;
  box-shadow: 0px 0px 20px #9356F7;
  transition: all 600ms ease;
  font-family: 'SF-Pro-Rounded-Regular';
  font-weight: bold;
  font-size: larger;
}

.button:hover {
  border-style: solid;
  color: white;
  background-color: #9F64F7;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 15px;
}

/* Vertical Spacer for use in .vstack */
.vspacer {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  min-height: 0;
  /* Ensures that the spacer can collapse to zero height if needed */
}

/* Horizontal Spacer for use in .hstack */
.hspacer {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  min-width: 0;
  /* Ensures that the spacer can collapse to zero width if needed */
}

.headerScreenshot {
  width: 100%;
  padding-top: -20px;
  margin-top: -10px;
  margin-bottom: 0px;
  transition: all 600ms ease;

}

.headerScreenshot:hover {
  width: 150%;
  margin-left: -30%;
}

.headerIconRotated {
  width: 50%;
  height: auto;
}


.header {
  position: relative;
  z-index: 1000;
}

.headerLogo {
  width: 75px;
  transition: all 2000ms ease;
}

.headerLogo:hover {
  transform: rotate(720deg);
}

.HStack {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: start;
  gap: 0;

}

.centerHStack {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;

}



.VStack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}

.ZStack {
  position: relative;
}

.ZStack>* {
  position: absolute;
  top: 0;
  left: 0;
}

.centerZStack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.centerZStack>* {
  position: absolute;
}

.socialIconMenu {
  height: 30px;
  width: 30px;
  padding-left: 10px;
  padding-bottom: 5px;
  filter: invert(100%) sepia(95%) saturate(20%) hue-rotate(315deg) brightness(104%) contrast(104%);
  transition: all 3600ms ease;
}

.socialIconMenu:hover {
  transform: skew(-10deg, -10deg) rotate(-3600deg) scale(1.6);
  height: 30px;
  width: 30px;
  padding-left: 10px;
  padding-bottom: 5px;
  filter: invert(68%) sepia(36%) saturate(1059%) hue-rotate(210deg) brightness(100%) contrast(96%);
  /*filter: invert(0%) sepia(9%) saturate(300%) hue-rotate(22deg) brightness(89%) contrast(101%);*/
}




.HSpacer10 {
  width: 10px;
  color: transparent;
}

.HSpacer15 {
  width: 15px;
  color: transparent;
}

.HSpacer20 {
  width: 20px;
  color: transparent;
}

.navBarTitle {
  margin: auto;
  padding-left: 15px;
  font-size: 30px;
  text-decoration: none;
}

.navBarTitle:hover {
  text-decoration: underline;
}

.contentContainer {
  display: flex;
  position: relative;
}

.infoText {
  border-color: #CF9AF8;
  border-width: 2px;
  border-style: solid;
  border-radius: 15px;

  box-shadow: 0px 0px 20px #9356F7;
  margin: 5px;
  /*padding: 10px;*/
}

.whiteButtonText {
  color: white;
  text-decoration: none;
}

.whiteButtonText:hover {
  text-decoration: underline;
}

.menuButtonText {
  width: 700px;
  color: white;
  text-align: center;
  /* Center the text */
  text-decoration: none;
  border-style: solid !important;
  display: block;
  border-width: 2px;
  padding-top: 10px;
  /* Increased padding on top */
  padding-bottom: 10px;
  /* Increased padding on bottom */
  padding-left: 10px;
  /* Adjusted left padding */
  padding-right: 10px;
  /* Adjusted right padding */
  border-color: #9356F7;
  border-radius: 5px;
  white-space: nowrap;
  /* Prevent text wrapping */
  overflow: show;
  /* Handle overflow */
  text-overflow: ellipsis;
  /* Add ellipsis for overflow text */
  transition: all 0.5s ease;
}


.menuButtonText:hover {
  letter-spacing: 5px;
  background-color: #9356F7CC;
  border-color: white;
  border-radius: 15px;
}


/*Menu Code*/
h2 {
  vertical-align: center;
  text-align: center;
}

html,
body {
  margin: 0;
  height: 100%;
}

* {
  font-family: Helvetica;
  box-sizing: border-box;
}

li:hover {
  border-width: 4px;
  border-color: white;
  border-radius: 0px;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /*background-color: #A487FF;*/
  /*background: linear-gradient(#197FE0, #A487FF);*/
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  height: 75px;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  background: #ffffff00;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0;
}



.menu>li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 50px;
  width: 50px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: all 500ms ease;
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
  transform: rotate(-100deg);
  width: 10px;
  margin-top: -13px;
}

#menu-toggle:checked+.menu-button-container .menu-button {
  transform: rotate(10deg);
  transform: scale(-1.5, 1.3);
  width: 20px;
  margin-top: 10px;
  margin-left: -10px;
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
  transform: rotate(-100deg);
  width: 10px;
  margin-top: -15px;
  margin-left: 10px;
}

.menu-button-circle {
  width: 50px;
  /* Diameter of the circle */
  height: 50px;
  /* Diameter of the circle */
  border: 2px solid #FFF;
  /* Adjust color and thickness as needed */
  border-radius: 50%;
  /* This makes it circular */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* To position the .menu-button absolutely inside this */
  transition: all 600ms ease;
}

#menu-toggle:checked+.menu-button-container .menu-button-circle {
  border-width: 4px;
}

.menu-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Center the button inside the circle */
  /* Rest of your styles for .menu-button */
}


/*@media only screen and (max-device-width: 480px) {*/
/*@media (max-width: 1000px) {*/
@media (max-width: 10000px) {
  .menu-button-container {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 0;
    margin-top: 75px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  #menu-toggle~.menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);

  }

  #menu-toggle:checked~.menu li {
    /*border: 0.5px solid #444;*/
    height: 70px;
    padding: 0.85em;
    transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu>li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #9356F7aa;
  }

  .menu>li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}