@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

body {
    width: 100vw;
    height: 100vh;
    background-color: black;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-style: normal;
    display: flex;
}

* {
    color: white;
    font-family: 'Russo One', sans-serif;
}

i {
    font-size: 2.5rem;
    transition: color 0.5s ease;

    margin-right: 20px;
    margin-top: 20px;

    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

i:hover {
    color: rgb(50, 170, 100);

}

h2 {
    letter-spacing: 0.2ex;
    font-size: 1rem;

    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

html {
    height: 100%;
}

canvas {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.container {
    text-align: center;
    margin: auto;
    z-index: 999;
}