header {
  min-height: 100vh;
}
header .navBar {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  background-color: #ffac78;
}
header .navBar .wrapper {
  display: flex;
  justify-content: space-between;
}
header .navBar .logo {
  font-size: 2rem;
  align-self: center;
  font-weight: 800;
  color: #1c1c1c;
  margin: 0.9rem 0;
  text-decoration: none;
}
header .navBar ul {
  list-style: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding-left: 0rem;
}
header .navBar ul li {
  padding: 0px 10px;
  display: inline-block;
}
header .navBar ul .contact {
  border: 2px solid #1c1c1c;
  transition: 0.3s;
}
header .navBar ul .contact:hover {
  background-color: #1c1c1c;
}
header .navBar ul a:hover {
  color: white;
}
header .navBar ul a {
  color: #1c1c1c;
  text-decoration: none;
  display: block;
  transition: 0.3s;
  padding: 5px 10px;
}
header .hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
header .hero .heroImg {
  display: flex;
  justify-content: center;
  width: 60%;
}
header .hero .container {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  min-height: 89.5vh;
}
header .hero .container .heroTitle {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
  width: 40%;
}
header .hero .container .heroTitle h1 {
  color: #1c1c1c;
  font-weight: 400;
}
header .hero .container .heroTitle h2 {
  font-size: 2rem;
  font-weight: 600;
}
header .navLinks {
  display: flex;
  align-items: center;
}
header nav .menuOpen {
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
}
header nav .menuClose {
  font-size: 1.8rem;
  display: none;
  cursor: pointer;
}

#about {
  padding: 4rem;
  background-color: #ffac78;
}
#about .wrapper .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#about .wrapper .container .leftSection {
  width: 40%;
}
#about .wrapper .container .leftSection h2 {
  font-size: 3rem;
  padding: 0rem 0rem 2.5rem 0rem;
}
#about .wrapper .container .leftSection img {
  width: 100%;
}
#about .wrapper .container .rightSection {
  width: 55%;
}
#about .wrapper .container .rightSection p {
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
}

#skills .wrapper h2 {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0rem;
}
#skills .wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#skills .wrapper ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  list-style: none;
  margin: 2rem 2rem;
  width: 12%;
}
#skills .wrapper ul li p {
  text-align: center;
  transition: 0.3s;
}
#skills .wrapper ul li .devIcon {
  color: #6e6e6e;
  font-size: 3rem;
  text-align: center;
  transition: 0.3s;
}
#skills .wrapper ul li .devIcon:hover,
#skills .wrapper ul li p:hover {
  color: #ffac78;
}

#portfolio {
  padding: 3rem 0rem;
  background-image: url(/images/orange.jpg);
  background-size: 500px;
}
#portfolio h2 {
  font-size: 2rem;
  text-align: center;
}
#portfolio .proj {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#portfolio .projContainer {
  background-color: rgba(255, 172, 120, 0.7);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  padding: 2rem;
  margin: 1.5rem 0rem;
  width: 100%;
}
#portfolio .projContainer .stack {
  padding: 0.5rem 0 0 0;
  font-weight: 600;
}
#portfolio .projContainer .projDetails {
  margin: 0rem 0rem 0rem 1.5rem;
  width: 50%;
}
#portfolio .projContainer img {
  width: 50%;
}
#portfolio .projContainer a {
  background-color: #1c1c1c;
  border: 2px solid #1c1c1c;
  transition: 0.3s;
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 5px 10px;
}
#portfolio .projContainer a:hover {
  transition: 0.3s;
  color: #1c1c1c;
  background-color: white;
}
#portfolio .eStore {
  flex-direction: row-reverse;
}
#portfolio .eStore .projDetails {
  margin: 0rem 1.5rem 0rem 0rem;
  width: 50%;
}

#contact {
  padding: 4rem 0rem;
}
#contact .socialIcons {
  display: flex;
  justify-content: space-between;
}
#contact .socialIcons .leftSection {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
#contact .socialIcons .info {
  display: flex;
  flex-direction: column;
}
#contact .socialIcons .info h2 {
  font-size: 1.18rem;
}
#contact .socialIcons .social {
  width: 40%;
  display: flex;
  justify-content: space-around;
}
#contact .socialIcons .rightSection {
  width: 60%;
}
#contact .socialIcons .rightSection input {
  height: 2rem;
}
#contact .socialIcons .rightSection textarea {
  padding-top: 0.5rem;
}
#contact .socialIcons .rightSection input,
#contact .socialIcons .rightSection textarea {
  border: 2px solid #1c1c1c;
  margin-bottom: 0.6rem;
  width: 100%;
  padding-left: 0.7rem;
}
#contact .socialIcons .rightSection form {
  border: none;
}
#contact .socialIcons .rightSection form button {
  border-style: none;
  width: 100%;
  padding: 1rem;
  color: white;
  background-color: #1c1c1c;
  transition: 0.3s;
}
#contact .socialIcons .rightSection form button:hover {
  color: white;
  background-color: green;
  cursor: pointer;
  font-size: larger;
}
#contact .socialIcons a {
  text-decoration: none;
  color: #1c1c1c;
}
#contact .socialIcons a:hover {
  color: white;
}
#contact .socialIcons .icon {
  color: #1c1c1c;
  font-size: 2.5rem;
  text-align: center;
  transition: 0.3s;
}
#contact .socialIcons .icon:hover {
  color: #ffac78;
}

footer {
  background-color: #ffac78;
}
footer .wrapper h3 {
  padding: 1rem 0rem;
  font-size: 0.65rem;
  text-align: center;
}
footer .wrapper h3 a {
  text-decoration: none;
  color: #1c1c1c;
}

@media (max-width: 1200px) {
  header .hero .wrapper .container h2 {
    font-size: 1.8rem;
  }
  #about {
    padding: 3rem 4rem;
  }
  #about .wrapper .container {
    flex-direction: column;
  }
  #about .wrapper .container .leftSection {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 60%;
  }
  #about .wrapper .container .leftSection h2 {
    text-align: center;
  }
  #about .wrapper .container .leftSection img {
    padding-bottom: 2.5rem;
  }
  #about .wrapper .container .rightSection {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1080px) {
  header .hero .heroImg {
    width: 90%;
  }
  header .hero .wrapper .container {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  header .hero .wrapper .container .heroTitle {
    width: 100%;
  }
  header .hero .wrapper .container .heroTitle h1 {
    padding-top: 2.5rem;
    text-align: center;
  }
  header .hero .wrapper .container .heroTitle h2 {
    padding-top: 0.5rem;
    text-align: center;
  }
  #about .wrapper .container .leftSection {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 60%;
  }
}
@media (max-width: 1080px) and (max-width: 940px) {
  #portfolio .projContainer {
    flex-direction: column;
  }
  #portfolio .projContainer .projDetails {
    margin: 0rem;
    width: 100%;
  }
  #portfolio .projContainer img {
    width: 100%;
    padding-bottom: 1rem;
  }
  #contact .socialIcons {
    flex-direction: column;
  }
  #contact .socialIcons .leftSection {
    flex-direction: row;
  }
  #contact .socialIcons .social {
    width: 20%;
    margin: 2rem;
  }
  #contact .socialIcons .social i {
    padding: 0.5rem;
  }
  #contact .socialIcons .rightSection {
    padding-top: 1rem;
    width: 100%;
  }
}
@media (max-width: 1080px) and (max-width: 810px) {
  header nav li {
    margin: 1rem 0;
  }
  header nav .menuOpen {
    display: block;
  }
  header nav .menuMain {
    font-size: 1.5rem;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffac78;
    transition: top 0.6s ease-in;
    margin: 0;
    display: none;
  }
  header nav .menuMain .menuClose {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  #about {
    padding: 3rem 0rem;
  }
  #about .wrapper .container .leftSection {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 60%;
  }
  #contact .socialIcons .social {
    width: 100%;
    padding: 1rem 0;
    margin: 0;
  }
  #contact .socialIcons .leftSection {
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 1080px) and (max-width: 600px) {
  #about .wrapper .container .leftSection h2 {
    font-size: 1.9rem;
  }
  #skills .wrapper ul li {
    width: 20%;
  }
}
@media (max-width: 1080px) and (max-width: 480px) {
  header .hero .wrapper .container h2 {
    font-size: 1.45rem;
  }
}
@media (max-width: 1080px) and (max-width: 368px) {
  #about .wrapper .container .leftSection h2 {
    font-size: 1.7rem;
  }
}
html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figcaption,
figure,
main {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: "";
  clear: both;
  height: 0;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 125%;
  color: #1c1c1c;
  scroll-behavior: smooth;
}

html,
body,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}