@import url("https://fonts.googleapis.com/css?family=Ubuntu+Mono");
@import url("https://fonts.googleapis.com/css?family=Ubuntu");
@import url("terminal.css");

body {
  background: linear-gradient(45deg, #57003f 0%, #f57453 100%);
  font-family: "Ubuntu";
  color: #ffffff;
}

/* page structure */

.wrapper {
  min-height: 100vh;
  max-width: 995px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header {
  display: flex;
  align-items: stretch;
}

.profile {
  width: 250px;
}

.profile img {
  width: 100%;
}

.bio {
  padding: 0px 20px 0px 20px;
  flex-shrink: 3;
  width: 100%;
}

.social {
  min-width: 250px;
  text-align: center;
}

.Terminal-wrapper {
  display: flex;
  /* flex: 1; */
  justify-content: center;
}

header {
  margin: 0;
  padding: 10px 10px 0px 10px;
}

.content {
  width: 200px;
}

footer {
}
/* page structure */

/* media queries */

@media screen and (max-width: 767px) {
  header,
  section {
    flex-wrap: wrap;
    justify-content: center;
  }
  .profile {
  }

  .bio {
    padding: 0px;
  }

  .photo {
    text-align: center;
    padding: 0;
  }

  .Terminal {
    margin: 0px;
    width: 98%;
  }
}

@media only screen and (max-device-width: 1024px) and (orientation: landscape) {
  .profile img {
    width: 60%;
  }
  .profile {
    text-align: center;
  }
  .Terminal
  {
    height: 300px;
  }
}

@media only screen and (min-device-width: 768px) and (orientation: landscape) {
  .Terminal {
    width: 500px;
  }
}

@media screen and (min-width: 968px) {
  .flex-container {
    display: flex;
  }
  .Terminal {
    width: 600px;
  }
}

/* icons & typography */

li.fa {
  padding: 5px;
  width: 100px;
}

.fa {
  padding: 15px;
  font-size: 25px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  margin-right: 5px;
}

.fa:hover {
  opacity: 0.7;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

.fa-envelope {
  background-color: #ffffff;
  color: 000;
}

.fa-terminal {
  color: white;
}

/* icons & typography */

header img {
  border-radius: 50%;
}

h1 {
  /* margin: 0px; */
  margin-bottom: 0px;
}

h2 {
  margin-top: 0px;
  color: #dbdbdb;
  font-size: 14px;
}

.Terminal a,
.Terminal a:visited {
  color: #007bb5;
  text-decoration: none;
}

.Terminal a:hover {
  color: #f57453;
}

/* buttons */

.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.button-terminal {
  background-image: linear-gradient(-180deg, #37aee2 0%, #056892 100%);
  border-radius: 0.5rem;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-size: 14px;
  justify-content: center;
  padding: 1rem 1.75rem;
  text-decoration: none;
  width: 200px;
  border: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-terminal:hover {
  background-image: linear-gradient(-180deg, #1d95c9 0%, #17759c 100%);
}

@media (min-width: 768px) {
  .button-terminal {
    padding: 1rem 2rem;
  }
}
