@import url("/styles/anim.css");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
:root {
  --bg-main: #ffffff;
  --bg-grey: #f4f4f4;
  --bg-grey-dark: #eeeeee;
  --bg-dark: #31363d;
  --bg-dark-alt: #21262c;
  --bg-light-blue: #9DD9D2;
  --bg-orange-dark:#FF8811;
  --bg-orange-light: #F4D06F;
  --bg-green: #0FFF8F;
  --bg-green-light: #78FFAC;
  --dark-blue: #211b33;
  --shadow-grey: #666666;
  --text-white: #ffffff;
  --text-dark: #080606;
  --custom-green: #89ffc8;
  --container-shadow: 2px 2px 6px var(--shadow-grey);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  overflow-x: auto;
  overflow-y: scroll;
  min-height: 100vh;
  font-family: "Merriweather", "Times New Roman", Times, serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
}

header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: flex;
  justify-content: right;
  align-items: center;
  margin: 0 0 1em 0;
  background-color: rgba(255, 255, 255, 0.7);
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: 2;
}
header .top-color {
  width: 100%;
  height: 5px;
  position: fixed;
  margin: 0;
  top: 0;
  background: rgb(71, 255, 92);
  background: linear-gradient(90deg, var(--bg-green) 0%, rgb(248, 255, 61) 55%, var(--bg-orange-dark) 100%);
  box-shadow: var(--container-shadow);
}
header #active-page {
  border-bottom-style: solid;
  border-color: #dd9103;
  padding: 0.6em 0;
  color: black;
}
header ul {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li {
  list-style: none;
  padding: 1em;
}
header ul li a {
  color: #797878;
  text-decoration: none;
}
header ul li a :link, header ul li a :visited, header ul li a :active {
  text-decoration: none;
}
header ul li :hover {
  color: #e09b1a;
}

section.intro-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 17% 0;
  text-align: center;
}
section.intro-container .intro-welcome {
  width: 700px;
  margin: 1.2em;
  line-height: 1.5em;
}
section.intro-container .intro-welcome h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
section.intro-container .intro-welcome a {
  text-decoration: none;
}
section.intro-container .intro-welcome a :hover {
  color: #068ddb;
  text-decoration: underline;
}
section.intro-container .intro-welcome a :visited, section.intro-container .intro-welcome a :active {
  text-decoration: none;
}
section.intro-container .intro-welcome strong {
  color: #f37a00;
}
section.intro-container .intro-welcome .spacer {
  width: auto;
  height: 4px;
  margin: 1em;
  background: linear-gradient(90deg, var(--bg-green) 0%, rgb(248, 255, 61) 55%, var(--bg-orange-dark) 100%);
  box-shadow: var(--container-shadow);
}
section.intro-container .intro-welcome p {
  font-weight: 500;
  font-size: 20px;
}

.portfolio-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: #fff0d3;
  padding: 2em 0;
  text-align: center;
}

.portfolio-intro-desc .btn {
  background-color: rgb(255, 120, 30);
  border: none;
  color: white;
  padding: 12px 30px;
  margin: 1em;
  cursor: pointer;
  font-size: 20px;
}
.portfolio-intro-desc .btn:hover {
  background-color: rgb(146, 63, 7);
}

.portfolio-container {
  margin: 0;
  background-color: #fff0d3;
}
.portfolio-container .portfolio-walkthrough {
  position: absolute;
  text-align: left;
  right: 30%;
  top: 150%;
}
.portfolio-container .portfolio-walkthrough h1 {
  font-size: 30px;
}
.portfolio-container .portfolio-content {
  padding: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.portfolio-container .portfolio-item-container {
  background-color: #ececec;
  padding: 1.2em;
  margin: 1.2em;
  border-radius: 20px;
  box-shadow: var(--container-shadow);
}
.portfolio-container .portfolio-item-container img {
  width: 400px;
}
.portfolio-container .portfolio-item-container a {
  text-decoration: none;
  color: #000000;
}
.portfolio-container .portfolio-item-container p {
  margin-bottom: 1em;
}

.portfolio-item-container:hover {
  background-color: #ff781e;
  transform: scale(1.1);
}

.portfolio-item-container.twine {
  text-align: center;
}
.portfolio-item-container.twine a {
  margin: 1em 0;
}

.portfolio-item-container.website img {
  width: 400px;
}

section.about-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  background-color: #d3f6ff;
  padding: 2em 0;
  text-align: center;
}
section.about-intro h1 {
  font-size: 28px;
}

.about-container {
  margin: 1em;
  margin: 0;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5em;
  background-color: #f5f7f8;
}
.about-container tr p {
  margin-top: 0.3em;
  margin-bottom: 1.2em;
}
.about-container td {
  max-width: 800px;
}
.about-container img {
  width: 200px;
  margin: 2em;
}
.about-container a {
  text-decoration: none;
}
.about-container a :hover {
  color: #068ddb;
  text-decoration: underline;
}
.about-container a :visited, .about-container a :active {
  text-decoration: none;
}
.about-container strong {
  color: #f37a00;
}

section.contact-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  background-color: #d3ffee;
  padding: 2em 0;
  text-align: center;
}
section.contact-intro h1 {
  font-size: 28px;
}

.contact-intro.foot {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: #d3ffee;
  padding: 2em 0;
  text-align: center;
}
.contact-intro.foot h1 {
  font-size: 28px;
}

.contact-container {
  margin-bottom: 0;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f7f8;
  padding-bottom: 4em;
}
.contact-container p {
  margin-bottom: 1em;
}

.contact-items {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.splitter {
  background-color: var(--text-dark);
  width: 2px;
  height: 120px;
  transform: translateY(20px);
}

.contact-items .item {
  height: 100px;
  margin: 1em;
  padding: 1em;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  /**
  a:hover{
    color: rgba($color: #ff8902, $alpha: 1.0);
    box-shadow: var(--container-shadow);
  }
  **/
}
.contact-items .item span {
  font-weight: 900;
}
.contact-items .item i:not(#hash) {
  margin: 1em;
}
.contact-items .item i:hover {
  transform: scale(1.3);
  transition: 0.5s;
}
.contact-items .item a {
  color: var(--text-dark);
  border-radius: 20px;
}
.contact-items .item a :hover {
  color: #00a365;
  transition: 0.5s;
}
.contact-items .item #hash {
  margin: 3px;
}

.contact-container-desc {
  display: block;
}

.contact-container.extra {
  margin: 1em;
  margin-top: 0;
  padding: 1em;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  background-color: #f5f7f8;
  padding-bottom: 4em;
  display: none;
}
.contact-container.extra tr p {
  margin-bottom: 1em;
}/*# sourceMappingURL=styles.css.map */