html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  font-family: 'Roboto Mono', monospace;
}

body {
  margin: 0;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  opacity: 1;
  background-color: #fff;
  color: #333;
  -webkit-transition: background-color 0.5s ease-out, color 0.5s ease-out;
  transition: background-color 0.5s ease-out, color 0.5s ease-out;
}

.not-scroll {
  overflow: hidden;
}

.dark-theme {
  background-color: #121212;
  color: #fff;
}

#theme-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 40px;
  border: 2.5px solid #414141;
  background-color: transparent;
  border-radius: 15px;
  padding: 5px;
  position: relative;
  bottom: -5px;
  cursor: pointer;
  -webkit-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
  overflow: hidden;
  opacity: 0;
  margin-left: 5px;
}

.fa-circle {
  position: relative;
  color: #ffffff;
  right: 15px;
  z-index: 1;
  -webkit-transform: scale(1.8);
          transform: scale(1.8);
}

.fa-moon {
  color: #414141;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin-left: 15px;
  position: absolute;
}

.fa-sun {
  color: #ffff;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  margin-right: 15px;
  position: absolute;
}

.fade {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: #ffcb27;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .5s linear;
  transition: opacity .5s linear;
}

.fade.active {
  opacity: 1;
}

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

#logo {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

#menu {
  display: none;
  -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: 0px 0px 50px 0px;
  position: fixed;
  background-color: #ffcb27;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  opacity: 0;
}

#menu #menu-close {
  width: 50px;
  right: 40px;
  top: 38px;
  position: fixed;
  fill: #414141;
  opacity: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

#sm-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: fixed;
  bottom: 0;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#sm-item {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  fill: #414141;
}

#nav-bar {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: fixed;
  padding: 0px 40px 0px 30px;
  top: 10px;
}

#logo {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

#menu-icon {
  width: 50px;
  height: 50px;
  position: relative;
  fill: #414141;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

#menu-item {
  text-decoration: none;
  font-size: 3rem;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  opacity: 0;
  color: #414141;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

#container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30%;
}

#box {
  border-radius: 25px;
  margin-bottom: 15px;
  width: 90%;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

#modal-bg {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  opacity: 0;
  z-index: 1;
}

#modal {
  position: relative;
  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: #f2f2f2;
  height: 90%;
  padding: 0px 50px 0px 50px;
  border-radius: 30px;
  top: 20%;
  -webkit-transform: translateY(700px);
          transform: translateY(700px);
  width: 90%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#close-modal {
  padding: 5% 5% 5% 5%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  left: 140px;
}

#video {
  width: 300px;
  height: 300px;
  border-radius: 5px;
  overflow-x: hidden;
  overflow-y: scroll;
  opacity: 0;
  margin-bottom: 5px;
}

#video div {
  margin-bottom: 15px;
}

#list-modal {
  position: relative;
}

#tittle {
  margin: 0;
  opacity: 0;
}

#description {
  width: 300px;
  font-size: .9rem;
  opacity: 0;
  margin-top: -10px;
}

#footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -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%;
  right: 0px;
  padding: 50px 50px 10px 50px;
}

#icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#footer-icons {
  fill: #414141;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  opacity: 0;
}

#mail {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  opacity: 0;
}

#mail button {
  width: 120%;
  height: 50px;
  border-radius: 20px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: #414141;
  background-color: #fec100;
  font-family: 'Roboto Mono', monospace;
}

#about {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0px 10px 20px 10px;
  position: relative;
  top: 100px;
  z-index: -1;
  line-height: 1.5;
  color: #414141;
}

#about-me {
  position: relative;
  top: -20px;
}

@media (min-width: 768px) {
  #container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 20%;
  }
  #box {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
    margin: 8px;
    width: 100%;
  }
  #modal-bg {
    left: 0;
  }
  #modal {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90%;
  }
  #close-modal {
    left: 250px;
    top: 10px;
    padding: 20px;
  }
  #video {
    width: 400px;
    height: 400px;
    position: relative;
    bottom: 20px;
  }
  #list-modal {
    padding: 0px 100px 0px 100px;
    bottom: 20px;
  }
  #description {
    width: 400px;
    font-size: .9rem;
  }
  #menu {
    padding: 0px 0px 80px 50px;
  }
  #mail {
    width: 20%;
  }
  #footer {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #about-me {
    position: relative;
    top: 0;
  }
}

@media (min-width: 992px) {
  #container {
    padding-top: 20%;
  }
  #box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    margin: 9px;
  }
  #menu-item {
    font-size: 4rem;
  }
  #close-modal {
    left: 350px;
  }
  #video {
    width: 400px;
    top: 50px;
    right: 220px;
  }
  #list-modal {
    top: -350px;
    left: 200px;
  }
  #description {
    width: 400px;
    font-size: 1rem;
  }
  #mail {
    width: 20%;
  }
}

@media (min-width: 1200px) {
  #container {
    padding: 10% 0% 0% 10%;
  }
  #nav-bar {
    padding: 0px 200px 0px 200px;
  }
  #box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    margin: 0px 0px 40px 30px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  #hover {
    background-color: none;
  }
  #hover:hover {
    background-color: #333;
    opacity: .5;
    cursor: pointer;
  }
  #menu {
    padding: 0px 0px 80px 0px;
  }
  #menu #menu-close {
    right: 200px;
  }
  #menu-item {
    font-size: 5rem;
  }
  #modal {
    position: absolute;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 80%;
    -webkit-transform: translateY(900px);
            transform: translateY(900px);
  }
  #close-modal {
    padding: 10px;
    cursor: pointer;
    position: fixed;
    left: 90%;
    top: 50px;
  }
  #video {
    width: 400px;
    left: 100px;
    height: 400px;
    top: 0;
    position: relative;
  }
  #list-modal {
    left: 70px;
    position: relative;
    top: -85px;
    padding: 0px 100px 0px 50px;
  }
  #description {
    width: 480px;
    font-size: 1rem;
  }
  #sm-icon-list {
    margin-bottom: 40px;
    -webkit-tap-highlight-color: transparent;
  }
  #mail {
    width: 10%;
  }
  #footer {
    padding: 20px 200px 20px 200px;
  }
  #mail button {
    width: 130%;
    border: none;
    border-radius: 45px;
    background-color: #ffcf36;
  }
  #mail button:hover {
    background-color: #fec100;
    cursor: pointer;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  #footer-icons {
    -webkit-tap-highlight-color: transparent;
  }
  #about-me-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #about {
    width: 70%;
    z-index: 0;
  }
}
/*# sourceMappingURL=style.css.map */