@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100;300;500;700&family=Poppins:wght@100;200;300;400;600;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#greg-section > canvas {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -100;
}

body {
    background-color: #282828;
}

#greg-section {
    z-index: 10;
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#title {
    font-family: 'Poppins', sans-serif;
    justify-self: stretch;
    text-transform: uppercase;
    -webkit-text-stroke: #d79921 2px;
    margin-bottom: 40px;
    font-size: 100px;
    color: transparent;
    position: absolute;
}

#title::before {
    position: absolute;
    content: 'Elia';
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    justify-self: stretch;
    -webkit-text-stroke: #d79921 5px;
    margin-bottom: 20px;
    font-size: 100px;
    color: transparent;
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

#title::after {
    position: absolute;
    bottom: -75%;
    left: 0px;
    content: 'Elia';
    transform: rotateX(180deg);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    justify-self: stretch;
    background: linear-gradient(transparent 40%, #d79921 100%);
    opacity: 0.2;
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: #d79921 5px;
    margin-bottom: 20px;
    font-size: 100px;
    color: transparent;
    filter: blur(6px);
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
}


#links {
    z-index: 100;
    list-style: none;
    position: absolute;
    top: 55%;
    font-family: 'Noto Sans Mono', monospace;
    font-size: 14px;
    color: #fbf1c7;
}

.link {
    padding: 0px 20px;
}

.link:hover {
    text-shadow: 0px 0px 10px #fbf1c7;
}


.link > a {
    text-decoration: none;
    color: #fbf1c7;
}