:root {
    --primary: #232323;
    --secondary: #FFFFFF;
}
* {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--secondary);
}
body {
    background-color: var(--primary);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
a {
    font-weight: bold;
    font-size: 2.5rem;
    text-decoration: none;
}
a:hover {
    text-shadow: 0px 0px 9px var(--secondary);
}
.text {
    text-align: center;
    margin-bottom: 20px;
    animation-name: ascend;
    animation-duration: 1s;
}

#svg5 {
    width: 300px;
    height: 300px;
    margin-bottom: 20px;
    animation-name: descend;
    animation-duration: 1s;
}

#links > a:first-child {
    margin-right: 20px;    
}

@keyframes descend {
    0% {
        margin-top: -20px;
    }
}

@keyframes ascend {
    0% {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 300px) {
    #svg5 {
        width: 100%;
        height: 300px;
    }
}
    
