@keyframes divCircle {
    from{
        width: 0vw;
        height: 0vw;
    }
    to{
        width: calc(150vw + 150vh);
        height: calc(150vw + 150vh);
    }
}

* { margin:0; padding:0; }

html {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: rgb(20, 20 , 25);
    padding: 0;
    margin: 0;
    height: 100%;
    display: block;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.counter{
    width: 100vw;
    height: 100vh;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    color: bisque;
    white-space: nowrap;
    font-family: 'Times New Roman', Times, serif;
}

#circle {
    position: absolute;
    background-color: burlywood;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.divAnim {
    animation-name: divCircle;
    animation-duration: 1s;
    animation-timing-function: linear;
}

#link{
    display: flex;
    color: bisque;
    font-size: 23px;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: 5px;
    font-family: 'Times New Roman', Times, serif;
}

a{
    color: inherit;
    text-decoration: none;
    margin: 5px;
}

#nachrichtenLink:hover > #nachrichtenPfeil{
    transform: translateX(6px)
}

#nachrichtenPfeil{
    display: inline-block;
    transition: transform 0.2s;
}

#btcLink:hover > #btcPfeil{
    transform: translateX(6px)
}

#btcPfeil{
    display: inline-block;
    transition: transform 0.2s;
}

@media only screen and (min-width: 768px) {
    .text{
        font-size: 7vw;
    }

    #link{
        flex-direction: row;
        justify-content: space-evenly;
        font-size: 30px;
        margin-bottom: 15px;
    }
}