@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

:root {
  --color-bg-body: #2e0f2a;
  --color-bg-page: #b44575;
  --color-bg-header: #2e0f2a;
  --color-bg-project: #e783ae;
  --color-bg-project-hover: #ff96c4;
  --color-bg-sidebar: #e783ae;
  
  --color-text-primary: #ffffff;
  --color-text-link: #ff96c4;
  --color-text-link-hover: #c0c0c0;
  --color-text-footer: #c0c0c0;
  --color-text-project-link: #b44575;
  --color-text-header-link: #e073a3;
  
  --color-border-white: #fff;
  --color-border-pink: #b44575;
  --color-border-light-pink: #eca2c2;
  
  --border-radius-page: 40px;
  --border-radius-header: 25px;
  --border-radius-sidebar: 15px;
  --border-radius-project: 10px;
  --border-radius-image: 6px;
  
  --font-size-base: 13.5px;
  --font-size-footer: 11px;
}

body {
  margin: 0;
  padding: 1.5em 0;

  background: var(--color-bg-body);
  color: var(--color-text-primary);

  font-family:
    "MS Gothic",
    "MS PGothic",
    "DotGothic16",
    monospace;

  font-size: var(--font-size-base);
  line-height: 1.35;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 1em 1em;
  

  background: var(--color-bg-page);
  border: 10px double var(--color-border-white);
  border-radius: var(--border-radius-page)
}

.footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 0.2em;
}
.footer p {
  color: var(--color-text-footer);
  font-size: var(--font-size-footer);
  text-align: center;
}

.header {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border: 2px solid var(--color-border-white);
  background: var(--color-bg-header);
  padding: 1em;
  border-radius: var(--border-radius-header);
  text-align: center
}
.header h1 {
  color: var(--color-text-primary);
}
.header a {
  color: var(--color-text-header-link);
}

.header a:hover {
  color: var(--color-text-link-hover)
}

.container {
  display: flex;
  gap: 1em;
}

.main {
  flex: 70%;
}

.random-text {
  font-style: italic;
  text-align: center;
  border: 1px solid var(--color-border-white);
  border-radius: var(--border-radius-project);
  padding: 3px;
  padding-bottom: 5px;
  background-image: url('images/laura.png');
  background-color: var(--color-bg-page);
  background-blend-mode: multiply;
  max-width: 100%;
}

.project {
  background: var(--color-bg-project);
  padding: 1em;
  border: 3px dashed var(--color-border-pink);
  border-radius: var(--border-radius-project);
  margin-bottom: 0.8em;
  overflow:auto
}

.project:hover {
  background: var(--color-bg-project-hover)
}

.sidebar:hover {
  background: var(--color-bg-project-hover)
}

.project p {

  text-align: justify
}

.project ul {
  list-style-type: "> "
}

.project-image {
  float: right;
  margin-left: 1em;
  margin-bottom: 0.5em;
  max-width: 75px;
  border: 2px solid var(--color-border-white);
  border-radius: var(--border-radius-image);
}

.imagebig {
  max-width: 175px;
}

.project h2 {
  border-bottom: 2px solid var(--color-border-light-pink);
  overflow: hidden;
}

.project a {
  color: var(--color-text-project-link)
}

.sidebar {
  flex: 30%;
  background: var(--color-bg-sidebar);
  padding: 1em;
  border: 5px dashed var(--color-border-white);
  border-radius: var(--border-radius-sidebar);
  margin-bottom: 0.8em;
}

.profile-pic img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-image)
}

.nav {
  margin-bottom: 0.6em;
}

h1 {
  font-size: 2em;
  font-weight: normal;
  margin: 0 0 0.2em 0;
}

h2 {
  font-size: 1.3em;
  margin: 0em 0 0.3em 0;
}

h3 {
  font-size: 1.1em;
  margin: 0em 0 0.3em 0;
}

p {
  margin: 0.35em 0;
}

ul {
  margin: 0.35em 0;
  padding-left: 1.2em;
}

li {
  margin: 0.1em 0;
}

a {
  color: var(--color-text-link);
  text-decoration: underline;
}
