/* styles.css */

body {
  font-family: Arial, sans-serif;
  margin: 0 auto;
  padding: 0;
  line-height: 1.6;
  background: #050d36;
  color: #fff;
  width: 70%;
}

header {
  padding: 1rem 0;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70vh;
}

header h1 {
  margin: 0;
  width: 100%;
  align-self: center;
  font-size: 6rem;
  display: flex;
  flex-direction: column;
}

header h1 span {
  font-size: 2rem;
  color: #e787ff;
}

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

nav ul li {
  display: inline;
  margin: 0 1rem;
  height: 100%;
  padding-bottom: 1rem;
  padding-block: 1rem;
}

nav ul li:hover {
  border-bottom: 2px solid #e787ff;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding-bottom: 1rem;
  padding-inline: 1rem;
}

main {
  padding: 2rem;
}

section {
  margin-bottom: 2rem;
}

h2 {
  border-bottom: 2px solid #e787ff;
  padding-bottom: 0.5rem;
}

.experience {
  margin-block: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.experience p {
  margin: 0;
}

.name_ent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

.name_ent .title span {
  color: #e787ff;
  font-weight: 600;
  opacity: 1;
}

.date {
  opacity: 0.8;
}

.contact {
    margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.contact a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}