* {
  text-decoration: none;
  color: #E0E0E0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 1.33em 0;
  line-height: 1.6;
  letter-spacing: .1em;
}

body {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #121212;
}

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

header {
  background: linear-gradient(135deg, #00ACC1 0%, #AB47BC 100%);
  padding: 40px 20px;
  text-align: center;
  border-bottom: 3px solid #00ACC1;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 172, 193, 0.5);
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  text-shadow: 0 0 5px #00ACC1;
}

.profile_photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-right: 20px;
  border: 2px solid #00ACC1;
  box-shadow: 0 0 10px #00ACC1;
  transition: box-shadow 0.3s ease;
}

.profile {
  display: grid;
  grid-template-columns: 33% 67%;
  gap: 0;
  background-color: rgba(30, 30, 30, 0.95);
  box-shadow: 0 0 20px rgba(0, 172, 193, 0.3);
  margin-top: 20px;
  border-radius: 8px;
}

.sidebar {
  background-color: #1E1E1E;
  padding: 30px 20px;
  box-sizing: border-box;
  border-right: 2px solid #00ACC1;
}

.main {
  padding: 30px 20px;
  box-sizing: border-box;
}

.icon {
  width: 15px;
  height: 15px;
}

a {
  transition: color 0.3s ease;
}

a:hover {
  color: #AB47BC;
}

h3 {
  color: #AB47BC;
  border-bottom: 2px solid #00ACC1;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 1.17em;
  text-shadow: 0 0 5px #AB47BC;
}

h4 {
    font-weight: 700;
}

.exp_head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.exp_head .exp_position {
  grid-column: 1;
}

.exp_head .exp_date {
  grid-column: 2;
  text-align: right;
}

.exp_position,
.exp_date,
.exp_company {
  margin: 0;
}

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

li {
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

ul li:before {
  content: "▹";
  left: 0;
  padding-right: 15px;
  color: #00ACC1;
}

@media (max-width: 768px) {
  .header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-text {
    text-align: center;
  }

  .profile-pic {
    margin: 0 auto 20px;
  }

  .profile {
    grid-template-columns: 1fr;
  }
}