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

body {
  background-color: #14142a;
  margin: 0 10px 0 10px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #23263a;
  height: 60px;
}

.header-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fafafa;
  min-width: 135px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  gap: 10px;
}

.nav-list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  /* make website and linkedin invisible on mobile */
  @media (max-width: 400px) {
    #website,
    #linkedin {
      display: none;
    }
  }
}

.nav-item {
  list-style: none;
}

.main {
  margin: 90px 0;
}

.main-image {
  width: 100%;
  height: 100%;
  max-height: 400px;
  border-radius: 10px;
  object-fit: cover;
  max-width: 1200px;
}

.main-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-container {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 25px 0;
}

.about-content {
  display: flex;
  align-items: start;
  text-align: justify;
  justify-content: start;
  flex-direction: column;
  width: 100%;
  padding: 0 50px;
  max-width: 1200px;
  gap: 7px;
  background-color: #23263a;
  padding: 20px 30px;
  border-radius: 10px;

  h2 {
    text-align: start;
    margin-bottom: 5px;
  }

  h2,
  p {
    color: snow;
    line-height: 1.3;
  }
}

.footer-container {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
p,
a,
li {
  font-family: "Poppins", sans-serif;
  color: #fafafa;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.underline {
  text-decoration: underline;
}

strong {
  font-weight: 600;
}