:root {
  --left-gap: 10px;
  --right-gap: 10px;
  --bottom-gap: 10px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", "Arial", monospace;
}

h1,
h2 {
  font-weight: normal;
}
p,
ul,
ol {
  margin-bottom: var(--bottom-gap);
}

ul,
ol {
  padding-left: calc(var(--left-gap) * 2);
}
body {
  padding-left: var(--left-gap);
  width: 70vw;
  margin: 10px auto;
  transition: width 0.4s ease;
  /* border: 5px solid black; */
  /* border-radius: 10px; */
}

@media (max-width: 1000px) {
  body {
    width: 100vw;
  }
}

/* HEADER STYLES */

#home-link {
  max-width: fit-content;
  display: block;
  font-size: 1.5em;
  font-family: sans-serif;
  text-decoration: none;
  color: blue;
  transition: all 0.2s;
}

#home-link:hover {
  color: red;
  text-decoration: underline;
}

@media print {
  body {
    width: 100vw;
    border: none;
    font-size: 0.9em;
  }
  .options {
    display: none !important;
  }
}

.options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.options > button {
  border: none;
  font-size: 1.5em;
  font-family: sans-serif;
  text-decoration: none;
  color: blue;
  background-color: transparent;
  transition: all 0.2s;
}

.options > button:hover {
  color: red;
  text-decoration: underline;
  cursor: pointer;
}

#cv-title {
  font-size: 3em;
  text-align: center;
  margin: 0;
}
.socials-nav {
  padding: 0;
  min-width: 100%;
}
.socials-nav > ul {
  /* display: flex; */
  list-style-type: none;
  width: fit-content;
  margin: 0 auto;
}
.socials-nav li {
  display: inline;
}
.socials-nav li:not(:last-child)::after {
  content: " | ";
  font-weight: bolder;
  font-size: 1.1em;
}

/* Education Section */

.education-table {
  /* border: 5px black solid; */
  min-width: 100%;
  border-spacing: 0 10px;
}

.education-table p {
  margin: 0;
}

.education-table td > p:first-child {
  font-weight: bold;
}

.education-table tr td:first-child {
  text-align: left;
}

.education-table tr td:last-child {
  text-align: right;
  padding: var(--right-gap);
}

/* Experience Section */

/* Skills Section */
.skills-table {
  width: 100%;
  border-spacing: 5px;
}

.skills-table tr td:first-child {
  font-weight: bold;
}

/* Project Section */

/* Certificates Section */
#certificates p {
  margin: 0;
}

#phone {
  display: none;
}
