@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&family=Roboto:wght@100&family=Special+Elite&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Courier Prime', monospace;
  line-height: 1.6;
  background-color: #F5F5F5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #333;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.header-right a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s;
}

.header-right a:hover {
  color: #ff9900;
}

.about {
  padding: 60px 0;
  background-color: #EEEEEE;
}

.about-content {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

#my-picture {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin-right: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.greet {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.work-with-me {
  padding: 60px 0;
  background-color: #F5F5F5;
}

.work-with-me h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.work-with-me p {
  margin-bottom: 15px;
}

.email-link {
  color: #ff9900;
  text-decoration: none;
  border-bottom: 2px solid #ff9900;
  transition: border-bottom-color 0.3s;
}

.email-link:hover {
  border-bottom-color: #333;
}

.portfolio {
  padding: 60px 0;
  background-color: #EEEEEE;
}

.portfolio h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
}

.card {
  background: #FFFFFF;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card a {
  color: #333;
  text-decoration: none;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  color: #333;
}

.card-content p {
  font-size: 16px;
  color: #666;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.skill-list {
  list-style: none;
  margin-top: 20px;
}

.skill-list li {
  margin-bottom: 20px;
}

.skill-list h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.skill-items {
  list-style: none;
  margin-left: 20px;
}

.skill-items li {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  #my-picture {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: auto;
}

.footer p {
  font-size: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  transition: border-bottom-color 0.3s;
}

.footer a:hover {
  border-bottom-color: #ff9900;
}