@charset "UTF-8";
/* CSS by Ben Mathis Seibel 2023 */

@font-face {
  font-family: "Source Code Pro";
  src: url(font/static/SourceCodePro-Regular.ttf);
}

* {
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;

  background-color: #000;
}

body {
  width: 1500px;
  height: auto;
  padding: 0;
  margin: 0 auto;
  border: none;

  background-color: #000;
  color: white;
  font-family: "Source Code Pro", monospace;
}

/*.......... header ..........*/

header {
  height: 150px;
}

.scroll_container {
  overflow: hidden;
  white-space: nowrap;
}

.scroll_text {
  /* animation properties */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);

  -moz-animation: my-animation 20s linear infinite;
  -webkit-animation: my-animation 20s linear infinite;
  animation: my-animation 20s linear infinite;

  font-size: 120px;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-3655px);
  }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-3655px);
  }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-3655px);
    -webkit-transform: translateX(-3655px);
    transform: translateX(-3655px);
  }
}

/*.......... navigation ..........*/

.section_navigation {
  position: sticky;
  display: block;
  top: 50px;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 18px;

  background-color: #000;
}

.navigation ul {
  margin: 50px 0 0 0;
  padding: 0;

  list-style-type: none;
}

.navigation ul li {
  display: inline-block;
  padding: 0 20px 0 0;
  color: white;
  text-decoration: underline;
}

.navigation ul li:hover {
  text-decoration: none;
}

h1 {
  font-size: 50px;
}

/*.......... services, references, about, contact ..........*/

.section_contact,
.section_about,
.section_references,
.section_services {
  display: block;
  padding: 100px 0 0 0;
  font-size: 18px;
}

/*.......... services ..........*/

.services_text_process,
.services_text_services {
  display: block;
  width: 1000px;
  height: auto;
  margin-bottom: 0px;
  font-size: 18px;
}

.collapsible {
  background-color: transparent;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  text-decoration: underline;
  color: whitesmoke;
}

.collapsible:hover {
  text-decoration: none;
}

.services_text_process {
  display: none;
  overflow: hidden;
}

/*.......... references ..........*/

.references_text_reference2,
.references_text_reference1 {
  display: inline-table;
  margin: 0 50px 0 0;
}

.references_text_reference2 a,
.references_text_reference1 a {
  color: white;
}

.references_text_reference2 a:hover,
.references_text_reference1 a:hover {
  text-decoration: none;
}

/*.......... about ..........*/

.about_text_about {
  display: block;
  width: 1000px;
  margin-bottom: 0;
}

.about_me img {
  max-height: 220px;
  display: inline-block;

  border-radius: 100%;
}

.about_text_about_more {
  display: none;
  overflow: hidden;
}

.left {
  float: left;
  margin: 20px 20px 20px 0;
}

.slide-left {
  opacity: 0;
  transition: all 0.5s;
}

.slide-left {
  margin: 0 50px 0 0;

  transform: translate(-30%) scale(0.9);
}

.active {
  transform: translate(0%) scale(1);
  opacity: 1;
}

.about_me {
  display: inline-block;
  margin-top: 50px;
  width: 1400px;
  height: 220px;
}

.about_me_text ul {
  margin-left: 350px;
  line-height: 35px;
}

/*.......... contact ..........*/

.section_contact h1 {
  text-align: center;
}

.contact_form {
  text-align: center;
}

.section_contact button,
textarea,
input {
  padding: 12px;
  margin: 10px 0 0 0;
  width: 500px;
  font-size: 16px;

  color: white;
  background-color: transparent;

  border-color: white;
  border-width: 3px;

  font-family: "Source Code Pro", monospace;
}

textarea {
  margin: 0;
  height: 250px;
}

.section_contact button {
  width: 200px;
}

textarea:hover,
input:hover,
.section_contact button:hover {
  background-color: white;
  color: #000;
}

.occasion {
  margin: 10px 0 0 0;
  font-size: 18px;

  text-align: center;
}

/*.......... footer ..........*/

footer {
  height: 200px;
  width: 100%;
}

footer a {
  margin: 0 25px 0 25px;
  color: white;
}

footer a:hover {
  text-decoration: none;
}

.footer_text {
  display: block;
  width: 100%;
  padding-top: 100px;
  text-align: center;
}

/*.......... anything under 1550px ..........*/

@media only screen and (max-width: 1550px) {
  /*.......... body ..........*/
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /*.......... navigation ..........*/

  .section_navigation {
    margin: 0 0 0 100px;
    width: auto;
  }

  /*.......... services, references, about, contact ..........*/

  .section_contact,
  .section_about,
  .section_references,
  .section_services {
    display: block;
    padding: 100px 0 0 100px;
    font-size: 18px;
  }

  /*.......... contact ..........*/

  .section_contact {
    padding-left: 0;
  }
}

/*.......... anything under 1300px ..........*/

@media only screen and (max-width: 1300px) {
  /*.......... header ..........*/

  .scroll_text {
    -moz-animation: my-animation 15s linear infinite;
    -webkit-animation: my-animation 15s linear infinite;
    animation: my-animation 15s linear infinite;
  }

  /*.......... services, references, about ..........*/

  .section_about,
  .section_references,
  .section_services {
    padding-left: 10vw;
  }

  /*.......... services ..........*/

  .services_text_process,
  .services_text_services,
  .section_services {
    width: 80vw;
  }

  /*.......... references ..........*/

  .section_references {
    width: 90vw;
  }

  /*.......... about ..........*/

  .about_text_about {
    width: 80vw;
  }

  .about_me_text {
    width: 80vw;
    height: auto;
  }

  .about_me_text ul {
    line-height: normal;
  }
}

/*.......... anything under 800px ..........*/

@media only screen and (max-width: 800px) {
  /*.......... * ..........*/

  * {
    font-size: 16px;
  }

  /*.......... services, references, about, contact ..........*/

  .section_contact,
  .section_about,
  .section_references,
  .section_services {
    display: block;
    padding-top: 50px;
  }

  /*.......... about ..........*/

  .about_me img {
    max-height: 200px;
    margin-bottom: 50px;
  }

  .about_me_text ul {
    margin-left: 0;
  }
}

/*.......... anything under 700px ..........*/

@media only screen and (max-width: 700px) {
  /*.......... header ..........*/
  .scroll_text {
    font-size: 100px;
  }

  /* for Firefox */
  @-moz-keyframes my-animation {
    from {
      -moz-transform: translateX(100%);
    }
    to {
      -moz-transform: translateX(-3050px);
    }
  }

  /* for Chrome */
  @-webkit-keyframes my-animation {
    from {
      -webkit-transform: translateX(100%);
    }
    to {
      -webkit-transform: translateX(-3050px);
    }
  }

  @keyframes my-animation {
    from {
      -moz-transform: translateX(100%);
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -moz-transform: translateX(-3050px);
      -webkit-transform: translateX(-3050px);
      transform: translateX(-3050px);
    }
  }

  /*.......... set font size ..........*/

  .section_services .services_text_services,
  .section_navigation .navigation ul a li,
  * {
    font-size: 14px;
  }

  /*.......... navigation ..........*/

  .section_navigation {
    margin-left: 10vw;
  }

  .navigation ul {
    margin-top: 20px;
  }

  .navigation ul li {
    padding-right: 10px;
    font-size: 16px;
  }

  h1 {
    font-size: 35px;
  }

  /*.......... about ..........*/

  .about_me {
    margin-top: 20px;
  }

  .about_me img {
    display: block;
    margin: 0 15vw 40px 15vw;
  }

  .about_me_text {
    display: block;
  }

  /*.......... contact ..........*/

  .section_contact button,
  textarea,
  input {
    width: 300px;
    font-size: 14px;
  }

  textarea {
    height: 200px;
  }

  .section_contact button {
    width: 150px;
  }

  .occasion {
    font-size: 16px;
  }

  /*.......... footer ..........*/

  footer {
    height: 150px;
    font-size: 16px;
  }

  footer a {
    margin: 0 5px;
  }

  .footer_text {
    padding-top: 80px;
  }
}
