:root {
  /* declare color variables */
  --color-primary: hsl(0, 0%, 95%);
  --color-secondary: hsl(240, 11%, 95%);
  --color-secondary2: hsla(240, 11%, 95%, .75);
  --color-accent: hsl(349, 93%, 63%);
  --color-background: hsl(0, 0%, 100%);
  --color-text: hsl(0, 10%, 20%);
  --color-hyperlink: rebeccapurple;
  
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  overflow-x: hidden;
  position: relative;
}

div#container {
  min-height: 100vh;
  position: relative;
}

header {
  min-height: 160px;
}

a {
  text-decoration: none;
  color: var(--color-hyperlink);
  font-weight: bold;
}

p a:hover {
  text-decoration: underline;
}

h1 {
  
}

header h1 a:first-child {
  font-size: 8rem;
  color: var(--color-hyperlink);
  text-shadow: 3px 0 0 white, 7px 0 0 var(--color-accent);
  letter-spacing: -1rem;
  transition: all 300ms ease-in-out;
  padding-left: 24px;
}

header h1 a:last-child {
  display: block;
  font-size: 12rem; font-weight: normal;
  text-align: right; padding-left: 2.4rem;
  text-transform: uppercase;
  letter-spacing: .5rem;
  color: var(--color-text);
  padding-right: 24px;
  text-shadow: 3px 0 0 white, 7px 0 0 var(--color-accent);
  transform: translateY(-7rem);
}

main {
  display: flex; flex-flow: row wrap;
  justify-content: space-evenly;
  gap: 24px;
  padding: 50px 24px;
}

#introduction, #assignments, #hobbies, #photo1, footer {
  background-color: var(--color-secondary2);
  min-height: 200px;
  margin: 16px 0;
  padding: 16px;
  flex: 1 0 40%;
  min-width: 350px;
  border-radius: 32px;
  position: relative;
  backdrop-filter: blur(4px);
  border: 1px solid #345;
}

#assignments, #photo1 {
  top: 80px;
}

#photo1 {
  text-align: center;
  background-color: transparent;
}

#photo1 img {
  width: 70%; max-width: 320px;
  border-radius: 32px;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  text-transform: lowercase;
  
}

h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  text-transform: lowercase;
}

section p {
  line-height: 1.6;
  margin-bottom: 16px;
}

ul {
  list-style: square;
  margin-left: 16px;
}

li {
  line-height: 1.4;
  margin-bottom: 8px;
}

footer {
  top: 80px;
  font-size: 1.5rem;
}

footer sup {
  padding-right: 6px;
  line-height: 1.4;
}

footer p {
  margin-bottom: 8px;
}

footer ul, footer ol {
  margin-left: 16px;
}

/* circle designs */

#container::before, body::before, body::after {
  content: "";
  border: 16px solid var(--color-accent);
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute; z-index: -10;
}

#container::before {
  width: 90vw; 
  right: -10%; top: -10%;
}

body::before {
  width: 50vw; 
  left: -10%; bottom: -10%;
}

body::after {
  width: 10vw; 
  right: 4%; bottom: -6%;
}

