@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@keyframes nav-hover {
  0% {
    -webkit-transform: scaleX(0) scaleY(0.5);
    -ms-transform: scaleX(0) scaleY(0.5);
    transform: scaleX(0) scaleY(0.5); }
  75% {
    -webkit-transform: scaleX(1) scaleY(0.5);
    -ms-transform: scaleX(1) scaleY(0.5);
    transform: scaleX(1) scaleY(0.5); }
  100% {
    -webkit-transform: scaleX(1) scaleY(1);
    -ms-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1); } }
*, *:focus, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  list-style: none;
  font-family: 'Lato', sans-serif; }

html {
  height: 100%; }

body {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100vw;
  min-width: 320px;
  font-size: 14px;
  background-color: #000;
  background-image: url(images/bg-space-mobile.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat; }
  @media (min-width: 600px) {
    body {
      background-image: url(images/bg-space.jpg); } }

.sr-only {
  position: fixed;
  top: -999px;
  left: -999px;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  z-index: -1; }

.social-block {
  text-align: center;
  margin: 0 auto; }
  .social-block li {
    display: inline-block; }
    .social-block li a:before {
      font-family: FontAwesome;
      width: 1.28571429em;
      text-align: center; }
  .social-block .link-codepen a:before {
    content: "\f1cb"; }
  .social-block .link-github a:before {
    content: "\f09b"; }
  .social-block .link-email a:before {
    content: "\f0e0"; }

header {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1rem;
  color: #d6d6d6; }
  header:before, header:after {
    content: " ";
    display: table; }
  header:after {
    clear: both; }
  header:before, header:after {
    content: " ";
    display: block;
    height: 2px;
    background-color: rgba(73, 109, 137, 0.75); }
  @media (max-width: 899px) {
    header:after {
      display: none; } }
  @media (max-width: 899px) {
    header > div:before, header > div:after {
      content: " ";
      display: table; }
    header > div:after {
      clear: both; }
    header > div:after {
      content: " ";
      display: block;
      height: 2px;
      background-color: rgba(73, 109, 137, 0.75); } }
  @media (min-width: 900px) {
    header > div {
      padding-left: 1rem; } }
  header > div strong {
    float: left;
    display: block;
    line-height: 4rem;
    font-size: 2em; }
    @media (min-width: 900px) {
      header > div strong {
        line-height: 2.4em; } }
  header nav {
    padding-left: 1rem;
    padding-right: 1rem; }
    @media (min-width: 900px) {
      header nav {
        float: right; } }

.nav-links {
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 84px;
  left: 1rem;
  right: 1rem;
  color: #d6d6d6;
  background-color: #496d89;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5);
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem; }
  @media (min-width: 900px) {
    .nav-links {
      position: static;
      height: auto;
      padding-top: 1em;
      padding-bottom: 1em;
      color: #d6d6d6;
      background-color: transparent;
      box-shadow: none;
      border-radius: 0;
      overflow: initial; } }
  @media (min-width: 900px) {
    .nav-links > ul {
      font-size: 0;
      text-align: left;
      margin: 0 auto; } }
  .nav-links > ul > li {
    border-top: 1px solid black;
    font-size: 1rem; }
    .nav-links > ul > li:first-child {
      border-top: none; }
    @media (min-width: 900px) {
      .nav-links > ul > li {
        display: inline-block;
        border-left: 1px solid currentColor;
        border-top: none; }
        .nav-links > ul > li:first-child {
          border-left: none; } }
    .nav-links > ul > li [style] > a, .nav-links > ul > li:hover > a {
      transition-delay: 0.1s;
      background-color: rgba(64, 96, 120, 0.75); }
      .nav-links > ul > li [style] > a:before, .nav-links > ul > li:hover > a:before {
        animation: nav-hover 0.1s ease-in-out; }
    .nav-links > ul > li > a {
      position: relative;
      z-index: 1;
      display: block;
      font-weight: 400;
      padding: 1rem;
      font-size: 1.2em;
      text-transform: uppercase;
      color: #d6d6d6;
      background-color: transparent; }
      @media (min-width: 900px) {
        .nav-links > ul > li > a {
          padding: .5rem 1rem; } }
      .nav-links > ul > li > a:before {
        content: " ";
        display: block;
        background-color: rgba(73, 109, 137, 0.75);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        z-index: -1;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0); }
    .nav-links > ul > li.dropdown {
      position: relative; }
      .nav-links > ul > li.dropdown > ul[style] > a, .nav-links > ul > li.dropdown:hover > a {
        transition-delay: 0.1s; }
      .nav-links > ul > li.dropdown > a {
        cursor: pointer; }
        @media (min-width: 900px) {
          .nav-links > ul > li.dropdown > a {
            transition-delay: .5s; } }
      .nav-links > ul > li.dropdown ul {
        background-color: #406078;
        height: 0;
        overflow: hidden; }
        @media (min-width: 900px) {
          .nav-links > ul > li.dropdown ul {
            position: absolute;
            top: 100%;
            right: 0;
            min-width: 250px;
            border-bottom-right-radius: .25rem;
            border-bottom-left-radius: .25rem; } }
        .nav-links > ul > li.dropdown ul li {
          border-top: 1px solid #496d89; }
        .nav-links > ul > li.dropdown ul a {
          color: #fff;
          font-size: 1.2rem;
          line-height: 1.6rem;
          padding: .5rem;
          border-left: 0.5rem solid #2e4557;
          display: block; }
          @media (min-width: 900px) {
            .nav-links > ul > li.dropdown ul a {
              border: none; } }
          .nav-links > ul > li.dropdown ul a:hover {
            background-color: #375368; }

.menu-trigger * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto; }

.menu-trigger {
  float: right;
  position: relative;
  display: inline-block;
  margin: 8px 0 0;
  width: 40px;
  height: 40px;
  background-color: #406078;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 8%;
  cursor: pointer;
  box-shadow: inset 0 0 0.8px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease-in-out; }
  @media (min-width: 900px) {
    .menu-trigger {
      display: none; } }
  .menu-trigger:hover {
    box-shadow: inset 0 0 0.8px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease-in-out; }
  .menu-trigger:active {
    box-shadow: inset 0 0 0.8px rgba(0, 0, 0, 0.5); }
  .menu-trigger.open {
    background-color: #456882; }

.menu-decor-container {
  width: 100%;
  height: 100%;
  transition: all 0.6s ease-in-out; }
  .open.menu-trigger .menu-decor-container {
    -webkit-transform: rotateZ(180deg) scale(1.2);
    -ms-transform: rotateZ(180deg) scale(1.2);
    transform: rotateZ(180deg) scale(1.2); }
  .menu-trigger:active .menu-decor-container {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
    transition: all 0.3s ease-in-out; }

.menu-decor {
  display: block;
  width: 65%;
  height: 10%;
  background-color: black;
  border-radius: 40px;
  transition: all 0.6s ease-in-out; }
  .menu-trigger:hover .menu-decor {
    transition: all 0.6s ease-in-out; }
  .menu-trigger:active .menu-decor {
    background-color: black; }
  .menu-decor:nth-child(2) {
    -webkit-transform: translateY(-7.27273px);
    -ms-transform: translateY(-7.27273px);
    transform: translateY(-7.27273px); }
  .menu-decor:nth-child(3) {
    -webkit-transform: translateY(7.27273px);
    -ms-transform: translateY(7.27273px);
    transform: translateY(7.27273px); }
  .open.menu-trigger .menu-decor:nth-child(1) {
    -webkit-transform: scale(0) rotateZ(-180deg);
    -ms-transform: scale(0) rotateZ(-180deg);
    transform: scale(0) rotateZ(-180deg); }
  .open.menu-trigger .menu-decor:nth-child(2) {
    -webkit-transform: translateY(0%) rotateZ(45deg);
    -ms-transform: translateY(0%) rotateZ(45deg);
    transform: translateY(0%) rotateZ(45deg); }
  .open.menu-trigger .menu-decor:nth-child(3) {
    -webkit-transform: translateY(0%) rotateZ(-45deg);
    -ms-transform: translateY(0%) rotateZ(-45deg);
    transform: translateY(0%) rotateZ(-45deg); }

main {
  position: relative;
  z-index: 1;
  width: auto;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: inherit; }

footer {
  width: 100%;
  text-align: center;
  padding: 1rem;
  color: #d6d6d6; }
  footer:before, footer:after {
    content: " ";
    display: table; }
  footer:after {
    clear: both; }
  footer .social-footer {
    font-size: 3rem;
    line-height: 3rem;
    padding: 1rem 0; }
    @media (min-width: 900px) {
      footer .social-footer {
        float: left;
        font-size: 2rem;
        line-height: 1.4rem;
        padding: 0; } }
    footer .social-footer li {
      padding-left: 1rem; }
      @media (min-width: 900px) {
        footer .social-footer li {
          padding-left: 1rem; } }
      footer .social-footer li:first-child {
        padding-left: 0; }
      footer .social-footer li a {
        color: currentColor;
        transition: color .2s ease-in-out; }
        footer .social-footer li a:hover {
          color: #496d89;
          transition: color .1s ease-in-out; }
  footer small {
    line-height: 1.4rem; }
    @media (min-width: 900px) {
      footer small {
        float: right; } }

.viewport-controller {
  position: fixed;
  top: -99px;
  left: -99px;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden; }
  .viewport-controller * {
    display: none; }
  .viewport-controller .mobile {
    display: block; }
  @media (min-width: 600px) {
    .viewport-controller .mobile {
      display: none; }
    .viewport-controller .tablet {
      display: block; } }
  @media (min-width: 900px) {
    .viewport-controller .tablet {
      display: none; }
    .viewport-controller .md {
      display: block; } }

.presentation {
  max-width: 800px;
  padding: 1rem;
  margin: 0 auto;
  text-align: left; }
  .presentation:before, .presentation:after {
    content: " ";
    display: table; }
  .presentation:after {
    clear: both; }
  .presentation > div {
    color: #d6d6d6; }
    .presentation > div > div {
      background-color: rgba(73, 109, 137, 0.25);
      background-color: rgba(0, 0, 0, 0.25);
      padding: 1rem;
      border-radius: .25rem; }
      @media (min-width: 900px) {
        .presentation > div > div {
          padding: 2rem; } }

.welcome h1 {
  font-size: 0;
  padding-bottom: .5rem;
  text-shadow: 0 0 0.25em black;
  vertical-align: middle;
  text-align: left; }
  .welcome h1 > span {
    font-size: 7vw;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden; }
    @media (min-width: 900px) {
      .welcome h1 > span {
        font-size: 3rem; } }
    .welcome h1 > span:nth-child(2) {
      display: inline-block;
      text-align: left;
      white-space: nowrap; }
.welcome .welcome-content {
  text-align: center; }
  .welcome .welcome-content > * {
    margin: 0 auto;
    position: relative; }
    .welcome .welcome-content > *:before, .welcome .welcome-content > *:after {
      content: " ";
      display: table; }
    .welcome .welcome-content > *:after {
      clear: both; }
.welcome .nemo-face {
  border-radius: 50%;
  shape-outside: circle(50%);
  shape-outside: margin-box;
  margin: 0;
  position: relative;
  float: left;
  width: 7rem;
  top: 0;
  left: -.5rem; }
  @media (min-width: 900px) {
    .welcome .nemo-face {
      width: 10rem;
      left: -1rem; } }
  .welcome .nemo-face > div {
    width: 100%;
    height: auto;
    padding-top: 100%;
    border-radius: 50%;
    -webkit-backface-visibility: hidden; }
    .welcome .nemo-face > div > div {
      border-radius: 1rem;
      position: absolute;
      width: 90%;
      height: 90%;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      right: 0;
      margin: auto;
      -webkit-clip-path: circle(50%);
      clip-path: url(#cut_circle);
      clip-path: circle(50%, 50%, 47%) circle(100%, 10%, 50%);
      background-image: url(images/nemo-face.jpg);
      background-position: 101% 17%;
      background-size: 91% auto;
      -webkit-backface-visibility: hidden; }
.welcome p {
  font-size: 1rem;
  line-height: 1.5rem;
  padding-bottom: 1rem;
  text-align: left;
  text-shadow: 0 0 0.25em black;
  opacity: 1; }
  @media (min-width: 900px) {
    .welcome p {
      font-size: 1.12rem;
      line-height: 1.7rem; } }
@keyframes welcome-button {
  25% {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    opacity: 1; }
  0%,100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }
.welcome .welcome-button {
  overflow: hidden; }
.welcome a {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  display: inline-block;
  border-radius: .25rem;
  padding: .5rem;
  background-color: #496d89;
  color: #d6d6d6;
  text-shadow: 0 0 0.25em black; }
  .welcome a:before {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 1rem currentColor;
    border-radius: .25rem; }
  .welcome a:hover:before {
    animation: welcome-button 0.2s ease-in-out; }

[id="about"] h1 {
  font-size: 2rem;
  padding-right: 1rem;
  padding-bottom: .25rem;
  text-shadow: 0 0 0.25em black;
  vertical-align: middle;
  text-align: right;
  float: left; }
[id="about"] p {
  padding-bottom: 1rem; }
[id="about"] .slide {
  display: none; }
  [id="about"] .slide.current {
    display: block; }
[id="about"] .next-prev-slide:before, [id="about"] .next-prev-slide:after {
  content: " ";
  display: table; }
[id="about"] .next-prev-slide:after {
  clear: both; }
[id="about"] .next-prev-slide .data-slide-prev {
  position: relative;
  float: left;
  padding: .5rem;
  font-size: 1rem;
  background-color: #5D819B;
  border-radius: .25rem;
  color: black;
  overflow: hidden; }
  [id="about"] .next-prev-slide .data-slide-prev:before {
    content: " ";
    position: absolute;
    display: block;
    border: .75rem solid transparent;
    border-right-color: black;
    width: 0;
    height: 0;
    margin: auto;
    top: 0;
    left: -150%;
    right: 0;
    bottom: 0;
    transition: all .1s ease-in-out;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    transition: transform .3s ease-in-out; }
  [id="about"] .next-prev-slide .data-slide-prev:after {
    content: " ";
    position: absolute;
    display: block;
    width: .75rem;
    height: .5rem;
    background-color: black;
    margin: auto;
    top: 0;
    left: 100%;
    right: 0;
    bottom: 0;
    transition: all .1s ease-in-out;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    transition: transform .3s ease-in-out; }
  [id="about"] .next-prev-slide .data-slide-prev span {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    display: block;
    transition: transform .2s ease-in-out; }
  [id="about"] .next-prev-slide .data-slide-prev:hover span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition-delay: .1s; }
  [id="about"] .next-prev-slide .data-slide-prev:hover:before {
    -webkit-transform: translateX(106%);
    -ms-transform: translateX(106%);
    transform: translateX(106%); }
  [id="about"] .next-prev-slide .data-slide-prev:hover:after {
    -webkit-transform: translateX(-208%);
    -ms-transform: translateX(-208%);
    transform: translateX(-208%); }
  [id="about"] .next-prev-slide .data-slide-prev:active span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition-delay: .1s; }
  [id="about"] .next-prev-slide .data-slide-prev:active:before {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%); }
  [id="about"] .next-prev-slide .data-slide-prev:active:after {
    -webkit-transform: translateX(-700%);
    -ms-transform: translateX(-700%);
    transform: translateX(-700%); }
[id="about"] .next-prev-slide .data-slide-next {
  position: relative;
  float: right;
  padding: .5rem;
  font-size: 1rem;
  background-color: #5D819B;
  border-radius: .25rem;
  color: black;
  overflow: hidden;
  display: inline-block; }
  [id="about"] .next-prev-slide .data-slide-next:after {
    content: " ";
    position: absolute;
    display: block;
    border: .75rem solid transparent;
    border-left-color: black;
    width: 0;
    height: 0;
    margin: auto;
    top: 0;
    right: -150%;
    left: 0;
    bottom: 0;
    transition: all .1s ease-in-out;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    transition: transform .3s ease-in-out; }
  [id="about"] .next-prev-slide .data-slide-next:before {
    content: " ";
    position: absolute;
    display: block;
    width: .75rem;
    height: .5rem;
    background-color: black;
    margin: auto;
    top: 0;
    right: 0;
    left: -130%;
    bottom: 0;
    transition: all .1s ease-in-out;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    transition: transform .3s ease-in-out; }
  [id="about"] .next-prev-slide .data-slide-next span {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    display: block;
    transition: transform .2s ease-in-out; }
  [id="about"] .next-prev-slide .data-slide-next:hover span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition-delay: .1s; }
  [id="about"] .next-prev-slide .data-slide-next:hover:after {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%); }
  [id="about"] .next-prev-slide .data-slide-next:hover:before {
    -webkit-transform: translateX(230%);
    -ms-transform: translateX(230%);
    transform: translateX(230%); }
  [id="about"] .next-prev-slide .data-slide-next.active span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition-delay: .1s; }
  [id="about"] .next-prev-slide .data-slide-next.active:after {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%); }
  [id="about"] .next-prev-slide .data-slide-next.active:before {
    -webkit-transform: translateX(700%);
    -ms-transform: translateX(700%);
    transform: translateX(700%); }
[id="about"] .background h1 + p {
  padding-top: 1.25rem; }
[id="about"] .background .info-cont:before, [id="about"] .background .info-cont:after {
  content: " ";
  display: table; }
[id="about"] .background .info-cont:after {
  clear: both; }
[id="about"] .background .info-cont:before {
  clear: both; }
[id="about"] .background .nemo-face2 {
  border-radius: 50%;
  shape-outside: circle(50%);
  shape-outside: margin-box;
  margin: 0;
  position: relative;
  float: right;
  width: 7rem;
  top: 0;
  right: -.5rem; }
  @media (min-width: 900px) {
    [id="about"] .background .nemo-face2 {
      width: 9rem;
      right: -1rem; } }
  [id="about"] .background .nemo-face2 > div {
    width: 100%;
    height: auto;
    padding-top: 100%;
    border-radius: 50%;
    -webkit-backface-visibility: hidden; }
    [id="about"] .background .nemo-face2 > div > div {
      border-radius: 1rem;
      position: absolute;
      width: 90%;
      height: 90%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      -webkit-clip-path: circle(50%);
      clip-path: url(#cut_circle);
      clip-path: circle(50%, 50%, 47%) circle(100%, 10%, 50%);
      background-image: url(images/nemo-face2.jpg);
      background-position: 5% 50%;
      background-size: 105% auto;
      -webkit-backface-visibility: hidden; }
[id="about"] .my-work h1 {
  font-size: 2rem;
  padding-top: .25rem;
  padding-right: 1rem;
  padding-bottom: .25rem;
  text-shadow: 0 0 0.25em black;
  vertical-align: middle;
  text-align: left;
  float: left; }
[id="about"] .my-work .lang-sum ul {
  margin: 0 auto;
  text-align: center;
  list-style: none;
  font-size: 0;
  font-size: 0.03px \9;
  padding: 1rem 0; }
  [id="about"] .my-work .lang-sum ul li {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    -webkit-filter: drop-shadow(0 0 0.25rem rgba(255, 255, 255, 0.75)) drop-shadow(0 0 1rem rgba(255, 255, 255, 0.25));
    filter: drop-shadow(0 0 0.25rem rgba(255, 255, 255, 0.75)) drop-shadow(0 0 1rem rgba(255, 255, 255, 0.25)); }
    [id="about"] .my-work .lang-sum ul li:first-child {
      position: relative; }
      [id="about"] .my-work .lang-sum ul li:first-child div {
        width: 100%;
        padding-top: 75%; }
      [id="about"] .my-work .lang-sum ul li:first-child img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        max-width: 40%;
        max-height: none; }
        [id="about"] .my-work .lang-sum ul li:first-child img[src*="html"] {
          top: 0;
          right: auto;
          left: 0;
          bottom: auto;
          z-index: 3; }
        [id="about"] .my-work .lang-sum ul li:first-child img[src*="css"] {
          top: -4%;
          right: 0;
          left: auto;
          bottom: auto;
          z-index: 2; }
        [id="about"] .my-work .lang-sum ul li:first-child img[src*="js"] {
          top: auto;
          right: 0;
          left: 0;
          bottom: 0;
          z-index: 1; }
    [id="about"] .my-work .lang-sum ul li img {
      display: block;
      max-width: 90%;
      max-height: 90%;
      height: auto;
      margin: 0 auto;
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      transition: .5s ease-in-out;
      -webkit-backface-visibility: hidden; }
      [id="about"] .my-work .lang-sum ul li img:hover {
        -webkit-transform: scale(1.25);
        -ms-transform: scale(1.25);
        transform: scale(1.25);
        transition: .3s ease-in-out; }
      [id="about"] .my-work .lang-sum ul li img[src*="node"] {
        max-width: 100%; }
      [id="about"] .my-work .lang-sum ul li img[src*="angular"] {
        max-width: 60%; }

/*# sourceMappingURL=styles.css.map */
