body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
}

.header-logo {
  font-weight: 700;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-list a {
  color: gray;
  text-decoration: none;
}

.header-button {
  color: white;
  background-color: blue;
  padding: 4px 8px;
  border-style: none;
  border-radius: 5px;
}

.title-container {
  display: flex;
  justify-content: center;
  background-color: rgb(250, 253, 255);
  margin-top: 0;
  border-top: 1px solid lightgrey;
}

.title-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 100px;
}

.title-icons {
  margin-top: 16px;
}

.title-content h1 {
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 900;
  color: Blue;
}

.title-content p {
  color: grey;
}

.title-text-top {
  margin-bottom: 0;
}

.title-button-1 {
  border: none;
  border-radius: 4px;
  background-color: blue;
  color: white;
  padding: 9px 18px;
  font-weight: 700;
}

.title-button-2 {
  border: 1px solid gray;
  border-radius: 4px;
  background-color: white;
  padding: 8px 18px;
  font-weight: 700;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-text-card {
  display: flex;
  align-items: center;
  gap: 100px;
}

.about-text {
  width: 350px;
}

.about-text p {
  color: grey;
}

.about-container {
  display: flex;
  justify-content: center;
  padding: 50px;
}

.tag {
  color: blue;
  padding: 4px 10px;
  border-radius: 14px;
  background-color: rgba(178, 199, 236, 0.754);
}

.about-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 400px;
}

.about-stats {
  display: flex;
  gap: 50px;
}

.left-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.right-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.about-card {
  border-radius: 10px;
  padding: 5px 16px;
  height: 150px;
  box-shadow: 2px 4px 16px rgba(0,0,0,.2);
}

.left-stats p,
.right-stats p {
  margin: 0;
}

.left-stats p {
  color: gray;
}

.skills-cards {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}

.skill-list {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.skill-list li {
  color: gray;
}

.skill-list li::marker {
  color: blue;
}

.skill {
  box-shadow: 2px 4px 16px rgba(0,0,0,.2);
  padding: 20px;
  width: 195px;
}

.skills-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 50px;
  height: 40px;
  background-color: blue;
  border-radius: 5px;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-align: center;
  box-shadow: 2px 4px 16px rgba(0,0,0,.2);
  padding-top: 10px;
}

.skills-container {
  background-color: rgb(250, 253, 255);
  padding: 50px;
}

.contact-text {
  width: 360px;
}

.contact-form {
  border-radius: 3px;
  box-shadow: 2px 4px 16px rgba(0,0,0,.2);
  width: 360px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}

.contact-details {
  margin-top: 10px;
  display: flex;
  gap: 40px;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mail {
  text-decoration: none;
  color: rgb(105, 105, 105);
}

.contact-list li {
  color: rgb(105, 105, 105);
  padding-top: 5px;
}

.form button {
  border-style: none;
  border-radius: 4px;
  background-color: blue;
  color: white;
  padding: 8px;
}

.form input {
  border: 1px solid lightgrey;
  border-radius: 5px;
  padding: 10px;
}

.form textarea {
  height: 70px;
  border: 1px solid lightgrey;
}

.footer-container {
  background-color: rgb(250, 253, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid lightgray;
  padding: 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-content h3,
.footer-content p {
  margin: 0;
}

button:hover {
  cursor: pointer;
}

a:hover {
  cursor: pointer;
}