* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
}

body, html {
  width: 100%;
  height: 100%;
  background-color: black;
  color: white;
  font-family: 'Noto Sans KR', sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  padding: 40px 20px;
  gap: 100px;
}

.left {
  flex: 1;
}

.left img {
  width: 500%;
  border: 5px solid black;
  max-width: 800px;
  align-items: center;
}

.right {
  flex: 1;
  max-width: 1500px;
  padding-left: 500px;
}

.right h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.right blockquote {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.right ul {
  font-size: 15px;
  line-height: 1.8;
  list-style: none;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: black;
  padding: 20px 0;
  text-align: center;
  border-top: 2px solid #444;
  z-index: 999;
}

footer nav {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

footer nav a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  padding: 10px;
}

footer nav a.active {
  border-bottom: 2px solid white;
  font-weight: bold;
}

.logos {
  margin-top: 15px;
}

.logos img {
  width: 40px;
  margin: 0 5px;
}

@media (max-width: 1000px) {
  .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
  }

  .right {
    padding-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .left img {
    width: 100%;
    max-width: 100%;
  }
}

