/* imports */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap");

/* Root */
* {
  margin: 0rem;
  padding: 0rem;
}
:root {
  --primary-color: #db2777;
  --overall-color: #fdf2f8;
  --dark-color: #111827;
}
body {
  font-family: "Raleway", sans-serif;
  background-color: var(--overall-color);
}

a {
  text-decoration: none;
}
hr {
  margin: 1rem;
}

/* Navigation */
.navigation {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
}
.unordered-list {
  list-style-type: none;
  display: flex;
  justify-content: space-evenly;
}
.list-item-inline {
  display: inline;
}
.navigation .link {
  color: white;
}
.navigation .link-active {
  font-weight: 900;
}

/* Header */
.hero {
  padding: 2rem;
  padding-top: 5rem;
}

.hero .hero-img {
  max-width: 80%;
  width: 350px;
  display: block;
  margin: auto;
}
.hero .intro {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero .intro-heading {
  color: var(--primary-color);
}

.hero .hero-heading {
  color: var(--dark-color);
}

/* Project-section and Blog-Section */
.project-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.project-section .section {
  flex-basis: 70%;
}
.container {
  padding: 0rem 1rem;
}

.container-center {
  max-width: 600px;
  margin: auto;
}

.project-section .aside {
  flex-basis: 30%;
}
.project-section .hero-img {
  max-width: 70%;
  width: 400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.project-section .section-heading {
  padding: 10px;
}

.project-section .link-primary {
  color: var(--primary-color);
  font-weight: 900;
}
.project-section .exp-list {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  padding-inline-start: 0rem;
  padding: 10px;
}

.project-section .exp-listitem {
  padding: 10px;
}
.project-section .icon {
  padding-left: 1.5rem;
  font-size: 1rem;
  text-align: center;
  color: var(--primary-color);
}
/* Footer */
.footer {
  background-color: var(--primary-color);
  padding: 1rem;
  text-align: center;
  color: white;
  border-top-right-radius: 5rem;
  border-top-left-radius: 5rem;
}

.footer .link {
  color: white;
  padding: 1rem;
}

.footer .footer-header {
  font-weight: bold;
  font-size: large;
  margin: 1rem;
}

.footer ul {
  padding-inline-start: 0px;
}

/** projects **/
.showcase-list {
  padding: 2rem;
}

.project-details {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 10px;
}

/** blogs **/
.showcase-blog {
  padding-bottom: 6rem;
}

.link-primary {
  color: var(--primary-color);
  font-weight: 900;
}

/* Blog1 */

table {
  border-collapse: collapse;
  width: 100%;
  margin: 2rem;
}

td,
th {
  border: 1px solid var(--dark-color);
  text-align: left;
  padding: 8px;
}

.run-code {
  display: block;
  color: var(--primary-color);
  font-weight: 900;
}
