@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 300;
}

body {
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100vh;
  width: 100vw;
  background: white;
}

.content {
  display: -ms-grid;
  display: grid;
  text-align: center;
  min-width: 50vw;
  max-width: 70vw;
  min-height: 70vh;
  background: #002447;
  color: white;
  padding: 10px;
  border-radius: 5px;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.content-left {
  padding-top: 5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  place-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content-left img {
  max-width: 60%;
  text-align: center;
}

.content-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
}

.content-right img {
  height: 40vh;
  border-radius: 150px;
  border: 3px solid #fe8249;
  margin: 5px;
}

.content-text {
  margin-top: 10px;
}

.content-left p {
  color: #f9f9f9;
  font-size: 1.2rem;
  text-transform: capitalize;
}

.about-social {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  place-items: center;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.portfolio {
  margin-top: 30px;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
}

.btn {
  padding: 0.25rem 0.5rem;
  border-right: 2px solid #fe8249;
  border-left: 2px solid #fe8249;
  display: inline-block;
  margin: 1rem 1rem;
  color: #f9f9f9;
  text-decoration: none;
  font-size: 1.2rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fe8249), color-stop(50%, #002447));
  background: linear-gradient(to right, #fe8249 50%, #002447 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-animation: swing-in-top-fwd 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation: swing-in-top-fwd 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.btn:hover {
  background-position: left bottom;
  opacity: 0.9;
  color: #002447;
  cursor: pointer;
}

.fab {
  font-size: 30px;
  color: #f9f9f9;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.fa:hover, .fab:hover {
  color: #fe8249;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .content {
    width: 90vw;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    height: auto;
  }
  .content-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
  .content-left img {
    width: 50%;
  }
  .content-right img {
    width: 40%;
    height: 40%;
  }
}
/*# sourceMappingURL=styles.css.map */