@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Bebas+Neue&family=Ubuntu:wght@400;700&display=swap");
.section {
  padding: 2.5rem;
  min-height: 80vh;
}

.header {
  text-align: center;
  font-size: 5rem;
  padding: 2.5rem;
  background: #f12711;
  background: -webkit-gradient(linear, left top, right top, from(#f12711), to(#f5af19));
  background: linear-gradient(to right, #f12711 0%, #f5af19 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

body {
  font-family: "Ubuntu", sans-serif;
  background-color: #111111;
  color: white;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
  font-family: "Bebas Neue", cursive;
}

hr {
  height: 20px;
  border: 0;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 10vh;
}

.nav-list {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav a {
  font-size: 2rem;
  color: white;
}

.nav-item {
  margin: 0 2rem;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-position: center;
  background-size: cover;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90vh;
  padding: 0 2.5rem;
  line-height: 2;
}

.hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.hero-text h1 {
  font-size: 10rem;
  color: white;
}

.hero-text h2 {
  font-size: 4rem;
  color: white;
}

.hero-text h3 {
  font-size: 2rem;
  color: white;
  border: 1px solid white;
  border-radius: 20px;
  margin-top: 30px;
}

.hero-text a {
  color: white;
}

.contact-btn {
  margin-top: 100px;
  margin: 100px auto 0 auto;
  padding: 15px 0;
  width: 50%;
  font-size: 2.5rem;
  background-color: transparent;
  border: white 1px solid;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.contact-btn a {
  color: white;
}

.contact-btn:focus {
  outline: none;
}

.contact-btn:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.contact-btn:hover {
  background: #f12711;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#f5af19), to(#f12711));
  background: linear-gradient(to right, #f5af19, #f12711);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border: 1px solid transparent;
}

.orange {
  color: #ff5a00;
  text-decoration: underline;
}

.hero-icons {
  margin-top: 40px;
}

.hero-icons a {
  color: white;
}

.hero-icon {
  margin: 0 10px;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.hero-icon:hover {
  color: #ff5a00;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1a1a1a;
  border-radius: 20px;
  border: 10px solid #1a1a18;
}

.aboutme-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 4;
  padding: 2.5rem;
}

.hobbies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem;
  height: 100%;
}

.hobby {
  text-align: center;
  color: #ff5a00;
}

.hobby p {
  font-size: 2rem;
  margin: 10px;
}

.hobby-icon {
  font-size: 5rem;
}

.skill-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 5rem;
  -webkit-box-flex: 20%;
      -ms-flex: 20%;
          flex: 20%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.skill-icon:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.html-icon {
  color: #e86229;
}

.css-icon {
  color: #254bdf;
}

.js-icon {
  color: #d3b32b;
}

.node-icon {
  color: #87bf00;
}

.sass-icon {
  color: #cf649a;
}

.react-icon {
  color: #5ed3f3;
}

.database-icon {
  color: #01588b;
}

.java-icon {
  color: #e51f24;
}

.firebase-icon {
  color: #e86229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.firebase-icon p {
  font-size: 2rem;
}

.projects-container {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 50vh;
  line-height: 5;
}

.projects-container h2 {
  font-size: 3rem;
}

.projects-container p {
  font-size: 1.2rem;
}

.project-icon {
  font-size: 5rem;
  margin: 50px;
  text-align: center;
}

.project-icon {
  color: white;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.youtube-icon {
  color: #ff0000;
}

.book-icon {
  color: #ff5a00;
}

.project-icon:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.amazon-project {
  color: #f78f00;
}

.tesla-project {
  color: #e82127;
}

.form-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50vh;
  padding: 2rem;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #111111;
  border-radius: 20px;
  padding: 2rem;
  width: 500px;
}

form input,
form textarea {
  border-radius: 20px;
  margin: 20px 0;
  padding: 20px;
  border: none;
}

form input,
form textarea {
  font-family: inherit;
  font-size: 1rem;
}

form input:focus,
textarea:focus {
  outline: none;
}

.send-btn {
  font-size: 2rem;
  cursor: pointer;
}

.send-btn:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

footer {
  background-color: #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

footer h2 {
  margin: 20px;
  text-align: center;
}

.footer-icons {
  margin: 20px;
}

.footer-icon {
  margin: 0 20px;
  color: white;
}

.footer-icon:hover {
  color: #ff5a00;
}

.burger {
  display: none;
}

@media (max-width: 734px) {
  .header {
    font-size: 3rem;
    padding: 1rem;
  }
  .container {
    padding: 0.5rem;
  }
  .section {
    padding: 1rem;
  }
  body p {
    font-size: 1rem;
  }
  nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #111111;
    z-index: 10;
    border-radius: 10px;
  }
  .burger {
    display: block;
    padding: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #ff5a00;
  }
  .nav-list {
    display: none;
    height: 100vh;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .nav-list.shown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem;
    -webkit-transition: display 0.3s ease;
    transition: display 0.3s ease;
  }
  .hero {
    height: 100vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero-text h1 {
    font-size: 4rem;
  }
  .hero-text h2 {
    font-size: 3rem;
  }
  .hero-text button {
    font-size: 1.5rem;
  }
  .aboutme-text {
    padding: 1rem;
    font-size: 1rem;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    text-align: center;
  }
  .hobbies {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
  .hobby {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 20px;
  }
  .hobby p {
    font-size: 1rem;
  }
  .hobby-icon {
    font-size: 3rem;
  }
  .skills-container {
    padding: 0rem;
  }
  .skill-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 30%;
        -ms-flex: 30%;
            flex: 30%;
    padding: 1rem;
    font-size: 4rem;
  }
  .projects-text {
    line-height: 2;
  }
  .projects-text h2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .projects-text i {
    margin: 50px;
  }
  .project-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .project-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 30%;
        -ms-flex: 30%;
            flex: 30%;
    font-size: 4rem;
  }
  .form-container {
    width: 95%;
    margin: 0 auto;
    padding: 0;
  }
  .contact {
    margin-bottom: 2.5rem;
  }
  form {
    width: 100%;
    padding: 1rem;
  }
  form input,
  form textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  form .send-btn {
    font-size: 1.5rem;
    padding: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-text {
    line-height: 1.5;
  }
}
/*# sourceMappingURL=styles.css.map */