html {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
}

#home,
#project-page,
#about-page {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(45deg, rgba(91, 204, 110, 0.3), rgba(76, 187, 220, 0.5)), url("../images/bg.jpeg");
  color: #39055c;
  background-origin: center;
  background-size: 100% 100%;
  height: 100vh;
  background-repeat: no-repeat;
}

@-webkit-keyframes Rotation {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100%;
            transform-origin: 100%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  100% {
    -webkit-transform-origin: 100%;
            transform-origin: 100%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes Rotation {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100%;
            transform-origin: 100%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  100% {
    -webkit-transform-origin: 100%;
            transform-origin: 100%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

#header {
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Roboto', sans-serif;
  padding: 1rem 1rem;
  color: #39055c;
}

#header #portfolio {
  padding: 1rem;
}

#header #portfolio a {
  text-decoration: none;
  color: #39055c;
}

#header .navlist {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#header .navlist li {
  padding: 5px 15px;
  margin-left: 1rem;
}

#header .navlist li :hover {
  color: #fff;
}

#header .navlist li a {
  font-size: 1.5rem;
  text-decoration: none;
  color: #39055c;
}

.content h2.heading {
  margin: 1rem;
  font-size: 2.5rem;
  text-align: center;
}

.content p {
  color: white;
  margin: 2rem;
  font-size: 2em;
}

.projects {
  margin-top: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  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;
}

.projects li {
  list-style: none;
}

.projects .project {
  color: #39055c;
  margin: 2rem;
  text-decoration: none;
  text-align: center;
}

.projects .project img {
  width: 24rem;
  height: 12rem;
}

#mid-section {
  margin-top: 2rem;
  width: 100%;
  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;
}

#mid-section .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#mid-section .contacts a {
  font-size: 3rem;
  margin-top: 2rem;
  margin: 2rem;
  color: #160a4b;
  text-decoration: none;
}

#mid-section .contacts a :hover {
  color: white;
  background-color: #39055c;
}

#mid-section .contacts a i {
  background: white;
  border-radius: 5px;
  padding: 0.5rem;
}

#mid-section #name {
  z-index: 2;
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
  padding: 0 3rem;
}

#mid-section #name .subtitle {
  font-size: 1.5rem;
  color: #160a4b;
}

#mid-section .first-name {
  opacity: 0;
  color: white;
}

#mid-section .last-name {
  padding-left: 5rem;
  color: #160a4b;
}

.rotate {
  opacity: 1;
  -webkit-animation: Rotation 0.5s ease-out;
          animation: Rotation 0.5s ease-out;
}

.logo {
  width: 4rem;
  color: #fff;
  stroke: #fff;
  fill: #ffffff;
}

.clock {
  width: 20rem;
  height: 20rem;
  border: 1rem dashed white;
  border-radius: 50%;
  margin: 1rem auto;
  position: relative;
  padding: 10px;
  -webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1), inset 0 0 0 3px #efefef, inset 0 0 10px black, 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1), inset 0 0 0 3px #efefef, inset 0 0 10px black, 0 0 10px rgba(0, 0, 0, 0.2);
}

.clock #three,
.clock #six,
.clock #twelve,
.clock #nine {
  color: #160a4b;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}

.clock #twelve {
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.clock #three {
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 0%;
}

.clock #six {
  font-weight: bold;
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.clock #nine {
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 0%;
}

.clock #three,
.clock #nine {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.clock-face {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 12;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
  border-radius: 50%;
}

.clock-face .hand {
  right: 50%;
  background: #160a4b;
  position: absolute;
  top: 50%;
  -webkit-transition: ease-in;
  transition: ease-in;
}

.clock-face .min-hand {
  height: 4px;
  width: 40%;
  -webkit-transform: rotate(80deg);
          transform: rotate(80deg);
  -webkit-transform-origin: 100%;
          transform-origin: 100%;
}

.clock-face .second-hand {
  background-color: red;
  height: 2px;
  width: 50%;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  -webkit-transform-origin: 100%;
          transform-origin: 100%;
}

.clock-face .hour-hand {
  height: 4px;
  width: 25%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: 100%;
          transform-origin: 100%;
}

.clock-face .dot {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  z-index: 65;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  background-color: red;
}

@media (max-width: 900px) {
  html {
    font-size: 12px;
  }
  #project-page {
    height: 120vh;
    width: 100vw;
  }
  #about-page {
    height: 100vh;
  }
  .projects {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .list {
    display: none;
  }
  .list #navlist li a {
    pointer-events: none;
  }
  .list.show {
    display: block;
  }
  #header {
    display: block;
  }
  #header .menu {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  #header .menu .line {
    background-color: #39055c;
    margin-bottom: 3px;
    width: 25px;
    height: 3px;
  }
  #header .navlist {
    top: 0%;
    right: 0%;
    width: 100%;
    padding: 1rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: rgba(34, 30, 30, 0.1);
  }
  #header .navlist li {
    text-align: center;
  }
  #mid-section {
    width: 100vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1rem auto;
  }
  #mid-section #name {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 10px;
  }
  #project-page {
    height: 130vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
  }
  #about-page {
    height: 100vh;
    background-size: 100% 100%;
  }
}
/*# sourceMappingURL=style.css.map */