@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght,MONO@0,300..800,1;1,300..800,1&display=swap');

body {
    box-sizing: border-box;
    max-width: 70ch;
    margin: auto;
    font-size: 1.25em;
    color: var(--black);
    background-color:var(--lilac) ;
    line-height: 1.6;
    font-family: 'Google Sans Code';
    font-weight: 300;
}

p {
    font-size: medium;
}

:root {
    --black:#0e2243;
    --lilac:#f3f0ff;
    --purple:#674ea7;
    --pink:#ffb6c7;
}

::-moz-selection { /* Code for Firefox */
  color: var(--purple);
  background: var(--lilac);
}

::selection {
  color: var(--purple);
  background: var(--lilac);
}

* {
    box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Google Sans Code', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    filter: grayscale(90%) hue-rotate(180deg);
    border-radius: 0.5rem;
}

img:hover {
    max-width: 100%;
    height: auto;
    filter: none;
}

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

a::after {
    text-decoration: none;
    color: var(--purple);
}

a:hover {
    text-decoration: underline;
    text-decoration-style: dotted;
    color: var(--black);
    font-weight: 600;
}

li {
    font-size: small;
}

.main {
    background-color: white;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    min-height: 30rem;
}

.header {
    background-color: var(--lilac);
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

.nav {
    background-color: var(--lilac);
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: medium;
}

.footer {
    background-color: var(--lilac);
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

.pagetitle {
    display: flex;
    gap: 1rem;

}

.lastupdated {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: var(--black);
}

.profile {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

@media (max-width: 600px) {
  .profile {
    flex-direction: column;
  }
}

.profilepic {
    max-width: 16rem;
    padding-top: 1rem;
}

@media (max-width: 600px) {
  .profilepic {
    max-width: none;
  }
}

.profileinfo {
    max-width: 40rem;
}

.demo {
    display: flex;
    flex-direction: row;
    font-size: small;
    gap: 1rem;
    font-weight: 600;
}

.demodate {
    font-size: small;
    font-weight: 300;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: var(--black);
}

.albums{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    
}

.album{
    width: 8.1rem;
}

@media (max-width: 600px) {
  .album {
    width: 9.5rem;
  }
}

.albumcover {
    border-radius: 0.5rem;
}

.title {
    font-size: small;
    font-weight: 600;
    text-transform: uppercase;
}

.info {
    font-size: x-small;
    font-weight: 300;
    font-style: oblique;
}