@font-face {
    font-family: 'VoidTech';
    src: url('assets/voidtech.ttf');
}
* {
    font-family: 'VoidTech', sans-serif;
    font-weight: 100;
}
body {
    margin: 0;
    padding: 0;
}
.text {
    color: white;
}
h1 {
    margin: 0;
}
.desc {
    color: #b3b3b3;
}
a {
    transition: 0.3s;
    text-decoration: none;
    color: white;
    background-color: #272727;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    box-shadow: 0 0 20px #272727;
}
.download {
    margin: 0 0 3px;
}
a:hover {
    background-color: #333333;
    box-shadow: 0 0 20px #333333;
}
@media (min-width: 69.0001rem) {
    body {
        background: linear-gradient(to right, #000000, #181818, #000000);
    }
    img {
        width: 20vw;
        height: auto;
        margin-left: 15vw;
        margin-right: 7vw;
    }
    .desc {
        margin-top: 1vh;
        margin-bottom: 3vh;
        font-size: 2vw;
    }
    h1 {
        font-size: 5vw;
    }
    .main {
        display: flex;
        align-items: center;
        height: 100vh;
    }
    svg {
        width: 1rem;
        height: 1rem;
    }
    a {
        border-radius: 10px;
        padding: 10px;
    }
    svg {
        margin-right: 0.5rem;
    }
}
@media (max-width: 69rem) {
    body {
        background: linear-gradient(to bottom, #000000, #181818, #000000);
    }
    img {
        width: 60vw;
        height: auto;
        margin-bottom: 5vh;
    }
    .desc {
        margin-top: 1vh;
        margin-bottom: 2vh;
        font-size: 4vw;
    }
    h1 {
        font-size: 8vw;
    }
    .main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100vh;
    }
    svg {
        width: 2.2rem;
        height: 2.2rem;
        margin-right: 1rem;
    }
    a {
        border-radius: 1rem;
        font-size: 2rem;
        padding: 1.5rem;
    }
}
#text {
    display: inline-flex;
}
#cursor-container {
    display: inline-flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#cursor {
    display: inline-flex;
    animation: animateText 1.2s steps(10, end) infinite;
    font-size: 4rem;
}
@keyframes animateText {
    from { width: 0; }
    to { width: auto; }
}