@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
}

/* body {
    background-color: #161616;
} */

.svg {
    width: 40px;
    height: 40px;
}

.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
/*    background-color: #161616; */
    flex-direction: column
}

.rainbow {
    font-size: 40px;
    font-family: 'Roboto Mono', monospace;
    font-weight: 300;
    -webkit-animation: hueanimation 10s infinite linear;
    color: rgb(255, 255, 0);
    margin: 0px 0px 30px 0px;
}

.title {
    font-size: 20px;
    font-family: 'Roboto Mono', monospace;
    font-weight: 300;
    color: #999999;
    margin: 0px 0px 10px 0px;
}

.row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 0px 15px 0px;
}

.icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.icon {
    margin: 0px 5px 0px 5px;
}

@keyframes hueanimation {
    from {
        -webkit-filter: hue-rotate(0deg)
    }

    to {
        -webkit-filter: hue-rotate(360deg)
    }
}

.crypto,
.discord {
    cursor: pointer;
}

.toastify {
    background: #1e1e1e !important;
    font-family: 'Roboto Mono', monospace !important;
    box-shadow: none !important;
}