@font-face {
    font-family: Techna;
    src: url(font/Techna.otf);
}

@font-face {
    font-family: Pixel;
    src: url(font/Euxoi.ttf);
}

@font-face {
    font-family: 'baseText';
    src: url("font/RedHatText-Regular.woff2");
}

@font-face {
    font-family: 'baseText';
    src: url("font/RedHatText-Bold.woff2");
    font-weight: bold;
}

@font-face {
    font-family: 'baseText';
    src: url("font/RedHatText-Light.woff2");
    font-weight: lighter;
}

@font-face {
    font-family: 'baseDisp';
    src: url("font/RedHatDisplay-Bold.woff2");
}

@font-face {
    font-family: 'baseDisp';
    src: url("font/RedHatDisplay-Black.woff2");
    font-weight: bold;
}

:root {
    --prim-black: #47061d;
    --prim-dark: #940d3c;
    --prim: #d41356;
    --prim-light: #de497d;
    --prim-white: #eb9bb7;
    --owl: #e1f7f8;
}

::selection {
    color: #000;
    background: #fff;
    text-shadow: none;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-family: sans-serif;
    font-family: baseText;
    background-color: #000;
    color: #fff;
    font-size: 32px;
    scroll-behavior: smooth;
    text-align: center;
}

body {
    padding: 20px;
}

h1 {
    font-family: baseDisp;
    text-shadow: 0 0 25px var(--prim);
}

h2 {
    font-family: baseDisp;
    font-size: 60px;
    text-align: center;
    background: var(--prim);
    color: #fff;
    padding: 20px;
    text-shadow: 5px 5px 0 #0008, 0 0 8px var(--prim-white);
    box-shadow: inset 5px -5px 0 #0008, inset 0 0 8px #0006;
    border-radius: 20px 0;
}

h3 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 3px 3px 0 #0008;
}

h3::before {
    content: '» ';
    color: var(--prim);
}

p {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #fff;
    padding: 0 5px;
    border-bottom: 2px solid var(--prim);
}

img {
    width: 50%;
}

hr {
    border: 2px solid var(--prim);
    width: 40%;
    margin: 100px auto;
}

audio {
    border: solid 2px #555;
    padding: 6px;
    border-radius: 4px;
    box-shadow: 0 0 25px var(--prim-black);
}

.stars {
    background-image: url(img/starbg.png);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.altfont {
    font-family: Techna;
}

.content {
    position: absolute;
    top: 110vh;
    left: 0;
    padding: 0 max(30px, calc(28vw - 70px));
}

.header {
    color: #fff;
    width: 100%;
    user-select: none;
    text-align: center;
    font-size: min(max(30px, 5vw), 150px);
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header p {
    font-size: 25px;
    font-family: Pixel;
    color: #666;
}

.header .owllogo {
    pointer-events: none;
    position: absolute;
    width: min(max(300px, 40vw), 800px);
    transform: translate(-50%, -42%);
    opacity: 0.4;
}

.sternlogo {
    position: absolute;
    width: 30%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -100px;
    z-index: -1;
    opacity: 0.3;
}

.stern {
    padding-top: 80px;
}

.snarlogo {
    pointer-events: none;
    user-select: none;
    margin: 25px 0;
    width: 30%;
}

.button {
    background: #000;
    padding: 10px 20px;
    line-height: 120px;
    border: 3px solid var(--prim);
    box-shadow: 0 0 15px var(--prim);
}

.button:hover {
    box-shadow: 0 0 40px var(--prim-light);
    border-color: var(--prim-white);
}

.note {
    color: #888;
}

.skills {
    font-family: 'baseText';
    line-height: 40px;
}

.links i {
    color: var(--prim-light);
    text-shadow: 0 0 10px var(--prim-dark);
}

.footer  {
    padding: 45vh 0;
}