@import url("https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat:wght@300;400&family=Sacramento&display=swap");
:root {
  --theme-clr: #0f3c40;
  --theme-links:#d7f0f6;
  --fixed-nav: #a7e4f2f7;
}

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

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 5px;
  /* Track */
  /* Handle */
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px grey;
          box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--theme-clr);
  border-radius: 10px;
}

a {
  text-decoration: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex--dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

h2 {
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--theme-clr);
}

h2 span {
  border-bottom: 2px solid var(--theme-clr);
}

hr {
  border: 8px dotted #5d5d5d;
  border-bottom: none;
  width: 50px;
  margin: 0 auto;
}

ul {
  list-style-type: none;
}

.onTop {
  position: absolute;
  height: 3%;
}

.fixedOnTop {
  position: fixed;
  left: 0;
  background: var(--fixed-nav);
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  z-index: 20;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

.header .profile_pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.header .profile_pic img {
  width: 100%;
}

.header ul li a {
  color: var(--theme-clr);
}

.btn_to_top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 22;
  font-size: 3rem;
  padding: 10px;
}

body {
  position: relative;
  font-family: "Merriweather",serif;
}

body .container {
  margin: 0 auto;
  max-width: 650px;
  position: relative;
}

body .container .section {
  background: #d7f0f6;
  text-align: center;
  overflow: hidden;
}

body .container .portfolio {
  width: 100%;
}

body .container .portfolio--gallery {
  margin: 3rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .container .portfolio--gallery a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body .container .portfolio--img {
  border: 4px solid var(--theme-clr);
  max-width: 100%;
  aspect-ratio: 1;
  cursor: pointer;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

body .container .portfolio--img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

body .container footer {
  text-align: center;
  background: #90cef2;
  padding: 2.5rem;
  width: 100%;
}

body .container footer a ion-icon {
  color: var(--clr);
  font-size: 2rem;
  margin-right: 0.8rem;
}

body .container footer a:nth-of-type(3) ion-icon {
  border-radius: 5px;
  background: -webkit-gradient(linear, left bottom, right top, from(#FEDA77), color-stop(#F58529), color-stop(#DD2a7b), color-stop(#8134af), to(#515bd4));
  background: linear-gradient(to top right, #FEDA77, #F58529, #DD2a7b, #8134af, #515bd4);
}

.section1 {
  height: 100vh;
  position: relative;
  max-width: 100%;
  padding-top: 10%;
}

.section1 .section--text {
  line-height: 1;
  margin-top: 5%;
}

.section1 .section--text h1 {
  font-family: 'Sacramento', cursive;
  font-size: 3rem;
}

.section1 .section--text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.section1 .cloud {
  max-width: 200px;
  position: absolute;
  top: 15%;
  right: 0;
}

.section1 .cloud2 {
  left: 0;
  top: 30%;
}

.section1 .mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  max-height: 55%;
  width: 100%;
  display: block;
}

@media (max-width: 550px) {
  .container {
    max-width: 500px;
  }
  .section1 > .section--text {
    margin-top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cloud1 {
    right: -20% !important;
  }
  .cloud2 {
    left: -20% !important;
  }
}

.skills {
  padding: 20px;
}

.skills h2 {
  text-align: end;
}

.skills table {
  margin: 5rem auto;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 10px 10px 30px 0px;
          box-shadow: 10px 10px 30px 0px;
  padding: 0.5rem;
}

.skills table tr {
  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;
}

.skills table tr td:nth-child(2n+1) {
  font-size: 4rem;
  color: var(--clr);
}

.skills table tr td:nth-child(2n+1) label {
  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;
}

.skills table > th, .skills td {
  padding: 10px;
}

.skills .progress {
  margin: 20px auto;
  padding: 0;
  width: 150px;
  height: 30px;
  overflow: hidden;
  background: #e7e7e7;
  border-radius: 6px;
  -webkit-box-shadow: inset 0px 0px 2px 0px black;
          box-shadow: inset 0px 0px 2px 0px black;
}

.skills .progress .bar {
  position: relative;
  float: left;
  min-width: 1%;
  height: 100%;
  background: #4681ed;
}

.skills .progress .bar .percent {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  font-family: tahoma,arial,helvetica;
  font-size: 12px;
  color: white;
}

.hobbies {
  padding: 20px;
}

.hobbies .hobbies--p {
  margin: 2rem 0 4rem;
  padding: 10px 5px;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  text-align: justify;
}

.contact {
  padding: 20px;
}

.contact p {
  margin-top: 2rem;
  font-family: "Montserrat", sans-serif;
}

.contact .contact--btn {
  text-transform: uppercase;
  background: #53edb2;
  color: #fff;
  border-radius: 5px;
  width: 50%;
  margin: 2rem auto;
  display: block;
  padding: 20px 5px;
}
/*# sourceMappingURL=style.css.map */