@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@300;400;700&display=swap");
:root {
  --hot-orange: rgb(255, 172, 27);
  --light-orange: rgb(255, 228, 182);
  --light-blue: rgb(147, 170, 207);
  --boss-blue: rgb(0, 229, 255);
  --cool-blue: rgb(55, 83, 153);
  --cooler-blue: rgb(39, 64, 124);
}

::-webkit-scrollbar {
  width: 0; /* Remove scrollbar space */
}

html {
  overflow: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  margin: 0;
  font-family: "Oxanium", arial;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--light-orange);
  transition: transform 0.25s ease-out;
  transform: scaleX(0);
}

.hover-underline:hover::after {
  background-color: var(--hot-orange);
  transform: scaleX(0.7);
}

.grow {
  transition: all 0.2s ease-in-out;
}

.grow:hover {
  transform: scale(1.05);
}

img {
  width: 100%;
}

.nav-container {
  background: var(--cool-blue);
}
.nav-container a {
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 2em;
}
header .logo {
  color: var(--boss-blue);
  font-weight: bold;
}
header ul {
  display: flex;
}
header ul a {
  text-transform: lowercase;
  display: block;
  padding: 0 1em;
}

.social-header,
.hero-design {
  display: none;
}

.hero {
  background: var(--cooler-blue);
  color: white;
  display: grid;
  text-align: center;
  padding: 4em;
}
.hero .main-text {
  text-transform: lowercase;
}
.hero .scroll {
  width: 30px;
  margin-top: 2em;
}

.meet {
  margin: 0 auto;
  width: 100%;
  font-weight: bold;
  color: var(--hot-orange);
  font-size: 1.2em;
}
.meet span {
  margin-top: 1em;
  margin-right: 0.5em;
}

section {
  padding: 4em 2em;
  text-align: center;
}

.subtitle {
  text-transform: lowercase;
  font-weight: bold;
  color: var(--cooler-blue);
}

.featured-title {
  color: black;
  font-weight: bold;
  font-size: 1.3em;
  margin-top: -0.4em;
  display: block;
}

.featured-desc {
  color: #252525;
  margin-bottom: 3em;
  font-size: 0.9em;
  line-height: 1.8em;
  font-weight: 500;
}

.left a {
  transition: all 0.2s ease-in-out;
}
.left a:hover {
  color: var(--hot-orange);
}

.right {
  border-radius: 1em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}

.skills {
  background: linear-gradient(to top, var(--hot-orange), var(--light-orange));
  position: relative;
  z-index: -1;
}
.skills .waves-on-top {
  position: absolute;
  top: 1px;
  transform: translateY(-100%);
  left: 0;
  max-width: 100vw;
  overflow: hidden;
}
.skills .waves-on-bottom {
  position: absolute;
  bottom: 1px;
  transform: translateY(100%);
  left: 0;
  max-width: 100vw;
  overflow: hidden;
}

.skills-container ul li {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  background: white;
  padding: 2em;
  border-radius: 1em;
  margin-bottom: 1em;
}
.skills-container ul li .icon-container {
  height: 100px;
  display: grid;
  place-content: center;
  margin: 0 auto;
}
.skills-container ul li .icon-container.one {
  width: 50px;
}
.skills-container ul li .icon-container.two {
  width: 200px;
}
.skills-container ul li .icon-container.three {
  width: 60px;
}
.skills-container ul li .skill-title {
  text-transform: lowercase;
  font-weight: bold;
  font-size: 1.2em;
}
.skills-container ul li .featured-desc {
  margin-bottom: 2em;
}

.portfolio {
  margin-top: 1em;
  position: relative;
}

.portfolio-container a {
  position: relative;
  color: black;
}
.portfolio-container a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: black;
  transition: transform 0.25s ease-out;
  transform-origin: bottom left;
  transform: scaleX(0);
}
.portfolio-container a:hover::after {
  transform: scaleX(1);
}
.portfolio-container img {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  border-radius: 1em;
  margin-bottom: 2em;
}

.contact {
  background: var(--cooler-blue);
  position: relative;
}
.contact .waves-on-top {
  position: absolute;
  top: 1px;
  transform: translateY(-100%);
  left: 0;
  max-width: 100vw;
  overflow: hidden;
  z-index: -1;
}

.contact-container {
  color: white;
  text-align: center;
}
.contact-container h1 {
  text-transform: lowercase;
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 1em;
}
.contact-container .contact-title {
  text-transform: lowercase;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--boss-blue);
}
.contact-container .contact-desc {
  margin-bottom: 2em;
}
.contact-container a {
  color: white;
  transition: all 0.2s ease-in-out;
}
.contact-container a:hover {
  color: var(--hot-orange);
}

.footer {
  background: var(--cool-blue);
  color: white;
  display: grid;
  place-content: center;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
}

/*-----------------------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 800px) {
  .featured,
.portfolio,
.contact-container {
    text-align: left;
  }
  .featured,
.portfolio-container {
    display: grid;
    grid-template-columns: 40% auto;
  }
  .left,
.portfolio-left {
    display: grid;
    place-content: center;
  }
  .right {
    margin-left: 2em;
    margin-top: 1em;
  }
  .skills {
    margin-top: -5em;
    margin-bottom: -7em;
    padding-top: 7em;
  }
  .skills-container ul {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 2em;
  }
  .portfolio {
    padding-top: 7em;
  }
  .portfolio-container img {
    margin-left: 1em;
  }
}
@media only screen and (min-width: 1050px) {
  .hero {
    height: 90vh;
  }
  .nav-container {
    display: grid;
    grid-template-columns: 66% auto;
    background: unset;
  }
  .nav-container header {
    background: var(--cool-blue);
  }
  header {
    padding: 2em 2em 2em 4em;
  }
  .social-header {
    padding: 2em 4em 2em 0;
  }
  section {
    padding: 4em;
  }
  .social-header {
    display: block;
  }
  .social-header ul {
    display: flex;
    justify-content: space-between;
    width: 7em;
    float: right;
  }
  .social-header ul img {
    width: 20px;
  }
  .hero {
    display: grid;
    grid-template-columns: 66% auto;
    background: unset;
    padding: 0;
  }
  .hero .content {
    background: var(--cooler-blue);
    padding: 6em 8em 6em 4em;
    text-align: left;
  }
  .hero .content h1 {
    font-size: 3em;
    line-height: 1.2em;
  }
  .meet {
    margin: unset;
  }
  .hero-design {
    display: unset;
    margin-left: -50%;
    margin-top: 15%;
    width: 100%;
  }
  .portfolio img {
    float: right;
    max-width: 500px;
  }
}
@media only screen and (min-width: 1250px) {
  header {
    padding: 2em 2em 2em 10em;
  }
  .social-header {
    padding: 2em 10em 2em 0;
  }
  section {
    padding: 10em 10em 4em 10em;
  }
  .hero .content {
    padding: 6em 8em 6em 10em;
  }
}
@media only screen and (min-width: 1550px) {
  header {
    padding: 2em 2em 2em 20em;
  }
  .social-header {
    padding: 2em 20em 2em 0;
  }
  section {
    padding: 6em 20em 4em 20em;
  }
  .hero .content {
    padding: 9em 20em 6em 20em;
  }
}
.circle {
  animation: circleAnim 1s infinite alternate-reverse;
}

@-webkit-keyframes circleAnim {
  from {
    transform: translate(262px, 798px);
    z-index: 5;
  }
  to {
    transform: translate(262px, 830px);
  }
}

@keyframes circleAnim {
  from {
    transform: translate(262px, 798px);
    z-index: 5;
  }
  to {
    transform: translate(262px, 830px);
  }
}/*# sourceMappingURL=main.css.map */