:root {
    --bg-color: #031428;
    --text-color: #17931c;
    --heading-color: #e0e237;
    --link-color: #ff000099;
    --hover-color: #ffffff;
}

.play-regular {
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.play-bold {
  font-family: "Play", sans-serif;
  font-weight: 700;
  font-style: normal;
}


html, body {
    margin: 0;
    padding: 20px;
    background-color: var(--bg-color);
    font-family: "Play", sans-serif;
    color: var(--text-color);
    height: 100%;
}

h1, h2, h3 {
    color: var(--heading-color);
    margin-bottom: 0.5em;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

p, li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1em;
}

ul {
    padding-left: 20px;
}

a {
    color: var(--link-color);
    font-weight: bold;
    text-decoration: none;
}

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

img.profile-pic {
    border-radius: 50%;
    max-width: 150px;
    margin-bottom: 1em;
}

.bio, .interests {
    margin-bottom: 2em;
}