* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  font-family: "Courier New", serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}

.header {
  width: 100%;
  height: 80px;
  background: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner_header {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_container h1 {
  color: white;
  font-weight: 100;
  padding: 0 1em;
}

.logo_container h1 span {
  font-weight: 1000;
}

.navigation {
  display: flex;
}

.navigation li {
  padding: 0 1em;
  font-weight: bold;
}

.navigation li a {
  color: white;
  font-size: 16px;
}

.navigation li a:hover {
  color: lightgray;
}

.whoami {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 1em;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  text-align: left;
}

.whoami H3 {
  font-size: 3em;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
}
.content-whoami {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-whoami img {
  width: 20%;
  height: 20%;
  border-radius: 50%;
  margin-left: 20px;
}
.text {
  display: flex;
  flex-direction: column;
}


.content-container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}

aside, .projects, .skills {
  flex: 1;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

/* Linkit */
button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  background: #101010;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #303030;
}

/* Projektit ja taidot */
.project-list, .skills-list {
  margin-top: 10px;
}

.project-list li, .skills-list li {
  background: #eee;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
}
footer{
  width: 100%;
  height: 80px;
  background: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer H4{
  color: #eee;
}

/* Blog Section */
.blog {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
}

/* Blog Container */
.blog-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual Blog Post */
.blog-post {
  padding: 20px;
  background: #eee;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.blog-post a {
  color: #101010;
  text-decoration: none;
}

.blog-post a:hover {
  color: #303030;
  text-decoration: underline;
}

.blog-post p {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 10px;
}

.date {
  font-size: 0.9em;
  color: #666;
}

/* Responsiivisuus */
@media (max-width: 768px) {
  .blog {
    padding: 15px;
  }
  
  .blog h2 {
    font-size: 2em;
  }

  .blog-post h3 {
    font-size: 1.5em;
  }

  .blog-post p {
    font-size: 1em;
  }
}
/* Responsiivisuus */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }
}
