@font-face {
    font-family: 'Font';
    src: url('../Fonts/SpaceMono-Regular.ttf') format('truetype');
}


* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Font', sans-serif;
    background-color: #202020;
    margin: 1vw;
}

p{
    color: #f4f4f4;
    font-size: 80px;
}

p:hover{
    font-weight: bolder;
    text-shadow: 10px 0px 10px rgba(0, 0, 0, 0.05);
}
h6{
    color: #f4f4f4;
    font-size: 3vw;
}

a{
    text-decoration: none;
    cursor: default;
    opacity: 0;
    animation: fadeIn 2s forwards;
    position: relative;
}

svg {
    margin-top: 50vh;
    margin-bottom: 50vh;
    opacity: 0;
    animation: svg 2s forwards;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

svg path {
    fill: transparent;
    stroke: #f4f4f4;
    stroke-width: 1;
}

@keyframes fadeIn {
    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes svg {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}