* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}


li {
    list-style: none;
}

canvas {
    display: block;
}

.icons {
    color: white;
}

@font-face {
    font-family: 'Nunito-Regular';
    src: url('../fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body.is-preload *,
body.is-preload *:before,
body.is-preload *:after {
    -moz-animation: none !important;
    -webkit-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}

html {
    font-family: 'Nunito-Regular';
    font-optical-sizing: auto;
    color: white;
    width: 100%;
    height: 100%;
    background: rgb(4, 3, 33);
}

#particle-js {
    width: 100dvw;
    height: 100dvh;
}

#main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 25px;
    backdrop-filter: blur(10px);
}


#intro {
    display: inline-block;
    text-align: left;
}

#contact>ul {
    color: whitesmoke;
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}


@media (max-width: 700px) {
    #main {
        width: 75dvw;
    }
}