@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR&family=Poppins&display=swap");

/* Headings - font-family: 'Noto Serif KR', serif; */
/* Texts - font-family: 'Poppins', sans-serif; */

:root {
  --heading-font: "Noto Serif KR", serif;
  --text-font: "Poppins", sans-serif;
}

* {
  margin-left: 4px;
}

::selection {
  color: aqua;
  background-color: rgb(84, 152, 255);
}

header {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: row;
  background-color: rgb(121, 156, 148);
  color: white;
  border-radius: 10px;
  font-family: var(--heading-font);
}

header h1 {
  margin-right: auto;
  padding-left: 10px;
}

header nav ul {
  display: flex;
  margin-top: 30px;
  margin-right: auto;
  padding-right: 10px;
}

nav ul li {
  list-style: none;
  display: flex;
  padding: 5px;
  font-family: var(--heading-font);
}

nav a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

h2 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  /* font-weight: 900; */
}

h4 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 900;
}

p {
  font-family: var(--text-font);
  font-size: 1.1rem;
}

.more {
  margin-top: 55px;
  font-size: 1.1rem;
  font-family: var(--text-font);
}
