@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600&display=swap');

/* GENERAL */

* {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
}

body {
  background-color: #ffffff;
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #003366;
}

p {
  margin-bottom: 9px;
}

li {
  margin-bottom: 9px;
}

td {
  padding: 3px 12px;
}

h1 {
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}

h2 {
  font-weight: 400;
  margin-bottom: 6px;
}

/* STRUCTURE */

header {
  background-color: #f8f8f8;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 24px;
  padding: 24px 0;
}

#header-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

#header-title {
  font-size: 40px;
}

#header-title a {
  color: #333333;
}

nav ul {
  display: flex;
  gap: 0 24px;
}

nav ul li {
  margin-bottom: 0;
}

main {
  width: 90%;
  max-width: 900px;
  margin: 12px auto;
}

footer {
  background-color: #f8f8f8;
  margin-top: 24px;
  border-top: 1px solid #dddddd;
  text-align: center;
  font-size: 0.8rem;
  color: #666666;
}

section {
  margin-bottom: 24px;
}

/* HOME PAGE */

#home-main {
  display: flex;
  align-items: center;
}

#home-image {
  flex: 1;
}

#home-image img {
  width: 90%;
  padding: 5%;
}

#home-text {
  flex: 2;
}

#home-text p {
  width: 90%;
  padding: 5%;
}

/* CURRICULUM VITAE */

#cv li {
  list-style: disc inside;
  padding-left: 24px;
}
