@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: 100vh;
  padding: 0;
  margin: 0 auto;
  border: none;

  background-color: #000;
  color: white;
  font-family: "Source Code Pro", monospace;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

nav {
  margin-top: 100px;
}

h1 {
  margin-top: 50px;
}

h2 {
  margin-top: 50px;
}

a {
  color: white;
}

a:hover {
  text-decoration: none;
}

nav,
.first_div,
.contact_div,
h1 {
  margin-left: 50px;
}

/*.......... anything under 700px ..........*/

@media only screen and (max-width: 700px) {
  * {
    font-size: 14px;
  }
}
