:root {
    --main-color:#35D900;
}
body {
    color: black;
    background-color: black;
}

h1 {
    color: white;
}
h2 {
    color:  white;
    text-align: center;
}

#wrapper {
  width: 600px;
  overflow: auto;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  background: black;
  margin: 0 auto 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

}

#content {
    flex-grow: 1;
    margin: 5px;
}

/* -- Main Picture -- */
.main-pic {
  text-align: center;
  position: relative;
  margin: auto;
  padding-top: 5px;
}
/* -- Title -- */
.title {
    position: relative;
    height: 10%;
    width: 100%;
    color: white;
    font-size: 20px;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    text-align: center;
    text-decoration: none;
    padding-bottom: 2px;
    padding-top: : 5px;
}
/* Top Navigation Bar */
body {margin:0;}

.hrstyle-one {
  border: 0;
  height: 1px;
  background: #333;
  background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.header {
  display: flex;
  justify-content: center;
  background-color: green;
}


.header a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: auto;
}

.header a:hover {
  background-color: var(--main-color);
  color: white;
}

#footer{
    color: var(--main-color);
    text-align: center;
}

/* -- CV Item -- */
.cv-item {
  width: 100%;
}
.cv-item ul {
  padding: 10px 0px 10px 10px;
  margin: auto;
}
.cv-item li {
  list-style-type: none;
  color: var(--main-color);
  font-size: 16px;
  font-family: ‘Times New Roman’, Times, serif;
  text-decoration: none;
}
.cv-item li a {
  text-align: center;
  color: white;
  font-size: 12px;
  font-family: 'Lekton', Helvetica, Arial, sans-serif;
  text-decoration: none;
}
.cv-item li a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}
.cv-item li a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

.side-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 20%;  /* Adjust as needed */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;;
}

.left {
    left: 0;
    background-image: url('doc/picture.jpg');
}

.right {
    right: 0;
    background-image: url('doc/picture.jpg');
}
