* {
  font-family: "Lato", sans-serif;
}

html {
  font-size: 62.5%;
}

h1, h2 {
  font-size: 3.5rem;
}

a, p, input, textarea {
  font-size: 1.8rem;
}

footer p {
  font-size: 1.5rem;
}

a {
  text-decoration: none;
}

a:hover {
  border-bottom: 2.5px solid #ee6c4d;
  cursor: pointer;
}

.button:hover {
  cursor: pointer;
}

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

/* HEADER */
header {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #293241;
}

header ul {
  margin-top: 20px;
  margin-right: 20px;
}

header ul li {
  text-decoration: none;
  display: inline-block;
  margin-left: 20px;
}

header ul li a {
  color: #e0fbfc;
}

/* ABOUT ME */
.about-me {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: #e0fbfc;
}

.about-me__container {
  width: 80%;
  padding: 20px;
  color: #293241;
}

/* PORTFOLIO */
.portfolio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: #ee6c4d;
}

.portfolio h1 {
  display: inline-block;
  padding: 20px;
  text-align: center;
}

.portfolio .project-container {
  width: 90%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  margin: 0 auto 20px auto;
}

.portfolio .project-container__item {
  width: 80%;
  height: 200px;
  margin: 15px auto;
  background-color: #e0fbfc;
}

/* CONTACT */
.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: #e0fbfc;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

.contact h2 {
  display: inline-block;
  text-align: center;
  padding-bottom: 15px;
  color: #293241;
}

.contact .contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
}

.contact .contact__container input, .contact .contact__container textarea {
  display: inline-block;
  margin-bottom: 10px;
  width: 300px;
  padding: 10px;
  border: 1.5px solid #293241;
  outline: none;
  border-radius: 10px;
}

.contact .contact__container .button {
  width: 70px;
  margin: 5px 0 15px 175px;
  display: inline-block;
  position: relative;
  padding: 5px;
}

.contact .contact__container .button:hover {
  cursor: pointer;
}

.contact .contact__container #status {
  margin-bottom: 10px;
  padding: 5px;
}

/* FOOTER */
footer {
  padding: 15px;
  background-color: #98c1d9;
  text-align: center;
}
/*# sourceMappingURL=mobile.css.map */