/* Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

/* Selection Colors */
::selection {
  background: #eee;
  color: #121212;
}

::-moz-selection {
  background: #;
  color: #121212;
}

img::selection,
img::-moz-selection {
  background: transparent;
}

/* Styles */
body {
  color: #fdfdf2;
  background: linear-gradient(135deg, #2f005a, #0f0010);
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

#page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
}

img {
  aspect-ratio: 1;
  width: 100px;
  height: auto;
  margin-bottom: 16px;
  border: 2px solid #fdfdf2;
  border-radius: 100px;
}

h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: -0.03em;
  line-height: 1.3;

}

h2 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: -0.01em;
  font-family: "Fraunces", serif;
  line-height: 1.3;
}

p {
  opacity: .8;
  margin-top: 16px;
  max-width: 585px;
}

a {
  opacity: .6;
  color: #fdfdf2;
  text-decoration: none;
  transition: opacity ease-in-out 0.4s;
}

a:hover {
  opacity: 1;
}

ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

ul li a {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "Sometype Mono", sans-serif;
}