* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  margin: auto;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: #fbab40;
  height: 100vh;
  background-color: #242628;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
}

.header h3 {
  text-align: center;
  color: #ff9e40;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.header > p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  flex-grow: 0;
  margin: 16px 0px;
}

.profile-img {
  padding: 2em;
  border-radius: 50%;

  max-width: 300px;
}

.about-text {
  max-width: 60%;
}

.footer {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 0;
  margin-bottom: 2em;
  justify-content: center;
  column-gap: 1em;
}

/* Style all font awesome icons */
.fa {
  padding: 1em;
  width: 3em;
  text-align: center;
  text-decoration: none;
  border-radius: 60%;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* linkedin */
.fa-linkedin {
  background: #0a66c2;
  color: white;
}

/* github */
.fa-github {
  background: #f0f6fc;
  color: #161b22;
}

@media screen and (max-width: 1024px) {
    .container {
        background-size: contain;
        background-position-y: center;
    }
}

@media screen and (max-width: 600px) {

.container{
    background-size: contain;
    background-position-y: center;
    }
  pre {
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;
  }

  body {
    width: 100vw;
  }
}
