@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: #f5f5f5;
  min-width: 0;
}

h1 {
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 2.4rem;
}

p {
  font-weight: 100;
}


.sidebar {
  position: absolute;
  top: 20px;
  left: 40px;
}

.sidebar a {
  cursor: pointer;
}

.sidebar img {
  width: 340px;
  display: block;
}

.vertical-line {
  width: 1px;
  height: 100vh;
  background-color: #333;
  margin-top: 0;
  margin-left: 75px;
}

main {
  height: 110vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  max-width: 500px;
  margin-left: 100px;
  min-width: 0;
}

.content h1 {
  margin-bottom: 60px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  white-space: normal;
}

.content h3 {
  font-weight: 600;
  margin-top: 30px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
}

.content h3 + p {
  margin-top: 20px;
}

.content h1 + p {
  margin-top: 30px;
}

.content p {
  line-height: 1.4;
}

footer {
  position: fixed;
  bottom: 20px;
  right: 40px;
  display: flex;
  gap: 30px;
}

footer a {
  font-size: 0.8rem;
  opacity: 0.6;
  text-decoration: none;
  color: inherit;
}



@media (max-width: 768px) {

  .sidebar {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }



  .sidebar img {
    width: 250px;
    margin-bottom: 10px;
    transform: translateX(-10px);
  }

  .vertical-line {
    display: none;
  }

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  


    main {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 40px 120px;
  box-sizing: border-box;
}

.home main {
  height: auto;
  min-height: 100vh;
  align-items: flex-start;
  padding-top: 120px;
}

  .content {
    margin: 0 auto;
    max-width: 400px;
  }

  .content h1 {
    white-space: normal;
  }

}