@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: white;
    margin: 0;

    background-color: #333333;
}

::selection {
    color: white;
    background: #ff9933;
}

::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

body::-webkit-scrollbar-thumb {
    background-color: #ff9933;
}

a {
    text-decoration: none;
    color: #0d87e5;
    font-weight: bold;
    font-size: 1.2em;
}

a:hover {
    color: #053b64;
}

#cta {
    margin-top: 8%;

    text-align: center;
}

#cta-icon {
    max-height: 256px;
    max-width: 100%;
}

#signup {
    background-color: #ff9933;
    margin: 2% 40% 0 40%;
    padding: 1%;
    border-radius: 2px;

    color: white;
    transition: color, background-color 0.5s;
}

#signup:hover {
    background-color: #cf7e2a;

    transition: background-color 0.5s;
}

@media only screen and (max-width: 767px) {
    #signup {
        min-width: 20%;
        padding: 2%;
        margin: 2% 20% 0 20%;
    }
}

@media only screen and (max-width: 320px) {
    #signup {
        min-width: 30%;
        margin: 2% 20% 0 20%;
    }
}

#particles-js canvas {
    display: block;
    vertical-align: bottom;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
    transition: opacity .8s ease, transform 1.4s ease
}

#particles-js {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -10;
}