@charset "utf-8";
/* CSS by Ben Mathis Seibel 2023 */

@font-face {
  font-family: "Source Code Pro";
  src: url(font/static/SourceCodePro-Regular.ttf);
  font-family: "Roboto Mono";
  src: url(font2/static/RobotoMono-Regular.ttf);
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

/*..........body start..........*/

body {
  margin: 0;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(
    90deg,
    whitesmoke 0%,
    whitesmoke 50%,
    #000 50%,
    #000 100%
  );
}

a {
  text-decoration: none;
}

/*..........Web-dev..........*/

.WD {
  display: inline-block;
  padding: 25vh 0 0 5vw;
  color: #000;
  font-family: "Source Code Pro", monospace;
  font-size: 1.25vw;
  letter-spacing: 0.5vw;
}

/*..........Photo..........*/

.PG {
  display: inline-block;
  padding: 30vh 0 0 18vw;
  text-align: right;
  color: whitesmoke;
  font-family: "Roboto Mono", monospace;
  font-size: 1.5vw;
  letter-spacing: 0.5vw;
}

/*..........anything under 1024px..........*/

@media only screen and (max-width: 1024px) {
  .WD {
    font-size: 1.5vw;
  }

  span {
    display: none;
  }

  .PG {
    padding-left: 30vw;
  }
}
