@font-face {
  font-family: "Antarctican Mono Medium";
  src: url("antarctica-regular.woff");
}
@font-face {
  font-family: "Antarctican Mono Book";
  src: url("antarctica.woff");
}

#main-cursor {
    position: absolute;
    width: 4px;
    height: 4px;
    top: -2px;
    background: white;
    pointer-events: none;
    transition: height 0.5s, width 1.5s, top 0.5s;
    transition-timing-function: linear;
}
#main-cursor::before {
    content: "";
    display: block;
    position: relative;
    left: 0px;
    top: 0;
    width: 2px;
    height: 1px;
    background: white;
    transition: width 0.5s, left 0.5s;
    transition-timing-function: linear;
}
#main-cursor.main-cursor-text::before {
    left: -5px;
    width: 12px;
    transition: width 0.5s, left 0.5s;
    transition-timing-function: linear;
}

#main-cursor::after {
    content: "";
    display: block;
    position: relative;
    left: 0px;
    top: 2px;
    width: 2px;
    height: 1px;
    background: white;
    transition: left 0.5s, width 0.5s, top 0.5s;
    transition-timing-function: linear;
}
#main-cursor.main-cursor-text::after {
    top: 26px;
    left: -5px;
    width: 12px;
    transition: left 0.5s, width 0.5s, top 0.5s;
    transition-timing-function: linear;
}

#main-cursor.main-cursor-text {
    height: 28px;
    width: 2px;
    top: -14px;
    transition: height 0.5s, top 0.5s;
    transition-timing-function: linear;
}


#follow-cursor {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 10px;
    left: 10px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(110px);
    z-index: 3;
    pointer-events: none;
}

:root {
    --dark: #0a0a12;
    --white: #eaeaf0;
    --accent: #f59e0b;
}

html, body {
    background: var(--dark);
    color : var(--white);
    width: 100%;
    padding: 0;
    margin: 0;
    cursor: none;
}
.content {
    width : 100%;
    position: relative;
}
.artwork {
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
h1 {
    font-family: "Antarctican Mono Medium";
    font-size: 72px;
    letter-spacing: 10%;
    text-transform: uppercase;
    font-weight: normal;
    text-align : center;
    white-space:pre;
    position: relative;
    display: block;
    margin: 20px;
}
h1::before {
    content: "Adrien\A De Coninck";
    position: absolute;
    left: 0;
    pointer-events: none;
    filter: blur(20px);
}
.career-title-container {
    padding: 15px 10px 19px 10px;
}
.career-title {
    font-family: "Antarctican Mono Book";
    font-size: 22px;
    padding: 5px 20px 8px 20px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border: 0.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.25);
    transition: 0.5s;
}
.career-title-container:hover .career-title {
    background: rgba(245, 158, 11, 0.06);
    color: rgba(245, 158, 11, 0.6);
    border: 0.5px solid rgba(245, 158, 11, 0.9);
    box-shadow: 0px 0px 20px rgba(245, 158, 11, 0.25);
    transition: 0.5s;
}