/* Typography imported from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Staatliches&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

/*non-class things, for basic format*/
body {
  font-family: "Unbounded", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  color: rgb(203, 197, 248);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  color: rgb(203, 197, 248);
}

h2 {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgb(159, 140, 216);
}

h3 {
  font-size: 1.3rem;
  font-weight: 500;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

h4 {
  font-weight: 500;
  padding-bottom: 0.7rem;
  color: rgb(66, 186, 180);
  padding-top: 0.3rem;
  line-height: 1.3rem;
}

li {
  color: rgb(159, 140, 216);
  font-weight: 300;
  list-style-type: disc;
  margin-top: 0.8rem;
  margin-left: 2em;
}

p {
  font-weight: 300;
  line-height: 1.5rem;
  color: rgb(203, 197, 248);
  padding-bottom: 1.8rem;
}

a {
  color: rgb(66, 186, 180);
  font-style: italic;
}

a:hover {
  color: aliceblue;
  font-style: normal;
}

/*index.html things*/

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(katbg-.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  padding: 2rem;
}

.hero-text {
  font-size: 3rem;
  padding: 1rem;
  text-align: center;
}

.hero-sub {
  padding-left: 1rem;
  padding-right: 1rem;
}

.sub-text {
  line-height: 1.5rem;
  margin-top: 1rem;
}

.index-sub {
  color: rgb(66, 186, 180);
  font-weight: 400;
  display: flex;
  flex-direction: column;
  line-height: 1.8rem;
}

.index-links {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/*about.html things*/
.aboutwrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url(katbg-.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  justify-content: center;
}

.aboutcol {
  margin: 3rem;
  margin-bottom: 0rem;
  display: flex;
  flex-direction: column;
}

.aboutimg {
  border: 3px inset rgb(66, 186, 180);
}

.aboutsub {
  padding-bottom: 1rem;
  line-height: 1.4rem;
}

.aboutlinks {
  padding-bottom: 1rem;
}

/*resume.html things*/

.bigheader {
  padding-top: 1rem;
}

.h2-top {
  font-size: 1.5rem;
}
.header2 {
  color: rgb(203, 197, 248);
  font-size: 1.8rem;
}

.resumeheader {
  background-image: url(katbg-.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: center;
}

.top-nav {
  padding: 2rem;
  padding-bottom: 1rem;
}

.contact {
  padding-bottom: 2rem;
  padding-left: 2rem;
}

.contactinfo {
  color: rgb(66, 186, 180);
  font-weight: 400;
  font-style: italic;
}

.section1 {
  background-color: rgb(41 33 72);
  color: #9f8cd8;
  padding: 2rem;
}

.link2 {
  color: rgb(159, 140, 216);
}

.wrapper {
  display: flex;
  flex-direction: column;
}

.section2 {
  background-color: rgb(19 14 36);
  padding: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer {
  text-align: center;
  background-image: url(katbg-.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 2rem;
}

/*large device (desktop) tings*/

@media (min-width: 992px) {
  header {
    font-size: 5rem;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 2rem;
  }

  /*index.html things*/

  .hero {
    background-position-x: center;
  }

  .hero-text {
    font-size: 3.5rem;
  }

  .hero-sub {
    font-size: 2rem;
  }
  .sub-text {
    font-size: 1.2rem;
  }
  .index-links {
    font-size: 1rem;
    text-align: center;
  }

  .index-sub {
    flex-direction: row;
  }

  /*about.html things*/
  .aboutwrap {
    flex-direction: row;
    align-items: center;
  }

  .aboutsub {
    line-height: 2.2rem;
  }

  /*resume.html things*/
  .wrapper {
    flex-direction: row;
  }

  .h2-top {
    font-size: 2rem;
  }
}
