/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

/* X-Small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */

/* FONTS */
/* font-family: 'Alfa Slab One', cursive;
font-family: 'Andada Pro', serif;
font-family: 'Overlock', cursive; */

/* Colors for website: white: #FFFFFF black for text: #333333 other: #2b93eb */

* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  font-family: "Andada Pro", serif;
  max-width: 100vw;
  overflow-x: hidden;
  line-height: 1.5;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-rendering: optimizeLegibility;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
p {
  font-size: 1.5rem;
}

/* -----HEADINGS----- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Alfa Slab One", cursive;
  margin-bottom: 1rem;
}
h1 {
  font-size: 3.052rem;
}
h2 {
  font-size: 2.441rem;
}
h3 {
  font-size: 1.953rem;
  font-family: "Overlock", cursive;
}
h4 {
  font-size: 1.563rem;
  font-family: "Overlock", cursive;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

/* NAVIGATION */

nav {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 20px 0;
  width: 100vw;
}
nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo,
.navLink {
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
}
.logo {
  font-weight: bold;
  color: #333333;
}
.navItem {
  padding: 20px 0;
}
.bar {
  background-color: #333333;
  display: block;
  width: 30px;
  height: 4px;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger {
  display: inline-block;
  cursor: pointer;
  margin-left: auto;
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger.active .bar:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav ul {
  display: block;
  position: fixed;
  background-color: #2b93eb;
  width: 100vw;
  margin: 0;
  list-style: none;
  top: 76px;
  left: 100%;
  text-align: center;
}
nav ul.active {
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* -----BUTTONS----- */

.btnHireMe,
.btnAboutMe,
.btnResume {
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif;
  min-width: 150px;
  margin-top: 20px;
}
.btnHireMe,
.btnResume {
  background-color: #2b93eb;
  border: 2px solid #2b93eb;
  margin-right: 16px;
  color: #ffffff;
}
.btnHireMe:hover,
.btnResume:hover,
.btnAboutMe:hover {
  background-color: #2b93eb;
  border: 2px solid #2b93eb;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btnAboutMe {
  border: 2px solid #2b93eb;
  color: #2b93eb;
}
.btnResumeLink {
  display: flex;
  justify-content: center;
  text-decoration: none;
}

/* HERO */

header,
#projects {
  background-color: #ffffff;
  padding: 100px 0;
}
header h1 {
  color: #333333;
}
.quote {
  margin-top: 20px;
  font-size: 1rem;
}
.heroImage img {
  width: 100%;
}

/* ABOUT ME */

#about,
#contact {
  padding: 100px 0;
  background-color: #ffffff;
}
#about h2,
#about h3,
#projects h2,
#projects h3,
#contact h2,
#contact h3 {
  text-align: center;
}
#about h2,
#contact h2 {
  color: #333333;
}
#about h3,
#contact h3 {
  color: #333333;
}
#about p,
#contact p,
#contact a {
  color: #333333;
  font-size: 1.2em;
}
#contact p {
  text-align: center;
}
#about .row,
#contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.projectsContainer {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  gap: 20px;
  overflow-x: auto;
}
.projectImageDisplay {
  padding: 5px;
}
.paddingFix {
  padding: 5px;
  background-color: #2b93eb;
  border-radius: 15px;
}
.projectLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.projectImageDisplay h4 {
  color: #ffffff;
}
.projectImageDisplay img {
  width: 100%;
  border-radius: 15px;
}
/* PROJECTS */
.linksHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
}
.linksHolder h4 {
  margin: 0;
  padding: 0;
}
.projectLinks {
  margin-left: auto;
}
.projectLinks a {
  margin: 0 5px;
}
.socialNetworks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}
.socialNetworks li a img {
  height: 30px;
  width: auto;
  margin: 10px;
}
.socialNetworks li a img:first-of-type {
  margin-left: 0;
}
.email {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.email img {
  height: 30px;
  width: auto;
}
footer {
  background-color: #2b93eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px;
}
footer p {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
  text-align: center;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* NAVIGATION */
  nav .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-left: auto;
    position: relative;
    left: auto;
    top: auto;
    background-color: unset;
    width: auto;
  }
  .hamburger {
    display: none;
  }
  .navItem {
    padding: 0 20px;
  }
  .selected {
    font-weight: bold;
  }
  .logo,
  .navLink {
    color: #333333;
  }
  .logo:hover,
  .navLink:hover {
    color: #2b93eb;
  }
  /* HERO */
  header .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #contact p {
    text-align: left;
  }
  .socialNetworks {
    justify-content: flex-start;
  }
  .email {
    justify-content: flex-start;
  }
  .btnResumeLink {
    justify-content: flex-start;
  }
  .logo,
  .navLink {
    color: #333333;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}
