body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0 120px;
  background-color: white;
  color: #333;
}

header {
  background-color: #02CCFE;
  color: white;
  padding: 20px;
  text-align: center;
}

.site-title {
  font-size: 2.5em;
  margin: 0;
}

nav {
  margin: 10px 0 60px 0;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav a {
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
}

nav a:hover {
  text-decoration: none;
  box-shadow: inset 0 -4px 0 #02CCFE;
}

h1 {
  padding-bottom: 10px;
  margin: 0 0 50px 0;
  font-weight: 500;
}

.underline {
  border-bottom: 4px solid #02CCFE;
  display: inline-block;
  padding-bottom: 2px;
}

ul, ol {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}

li {
  margin-bottom: 0.5em;
  line-height: 1.4;
  font-size: 16px;
}

a.code-link {
  display: inline-block;
  margin: 0 8px 0 0;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  font-family: monospace;
  color: #007bff;
  text-decoration: none;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
}

a.code-link:hover {
  background-color: #e8f0fe;
  color: #0056b3;
  text-decoration: underline;
}

img {
  max-width: 40%;
  height: auto;
  transition: opacity 0.3s ease;
}

img:hover {
  opacity: 0.7;
}

.responsive-image {
  max-width: 40%;
  height: auto;
}

.image-container {
  display: block;
  margin: 0 0 120px 0;
}

main {
  padding: 20px;
}

footer {
  margin-top: 100px;
  padding: 10px;
  color: #333;
  text-align: center;
  background-color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  padding: 0;
  background-color: white;
}

.social-icons a {
  margin: 0 10px;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #02CCFE;
}

.social-icons i {
  font-size: 1.5rem;
}

@media (max-width: 600px) {
  .site-title {
    font-size: 2em;
  }
  nav ul li {
    display: block;
    margin: 10px 0;
  }
}

/*# sourceMappingURL=main.css.map */