@import url('https://fonts.googleapis.com/css?family=Josefin+Sans');

body {
    padding: 0px;
    margin: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("img/background.png") center center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Josefin Sans', sans-serif;
}

.narrow-section {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
}

#loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: #000;
    z-index: 999;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#spinner {
    animation: rotate 0.56s infinite linear;
    width: 50px;
    height: 50px;
    border: 6px solid #8e44ad;
    border-bottom: 6px solid #fff;
    border-radius: 50%;
    margin: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#middle {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    text-align: center;
    z-index: 1;
    color: #fff;
    padding-bottom: 10vh;
    line-height: 1.1;
}

#middle h1 {
    color: rgb(210, 221, 230);
    font-size: 70px;
}

#middle h2 {
    font-size: 30px;
}

#middle table {
    width: 30%;
    margin: 6vh auto;
}

#middle table tr td {
    text-align: center;
}

.social {
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    transition: 0.4s ease-in-out;
    margin: 0px 8px;
    text-align: center;
}

.social:hover {
    cursor: pointer;
    color: rgb(71, 184, 243);
}

#used div {
    font-size: 14px !important;
    display: inline-block;
    padding: 8px 10px;
    border: 2px solid #fff;
    margin: 0px 10px;
    border-radius: 50px;
}

#used:hover {
    cursor: text;
}

#used div:hover {
    cursor: text;
}

::placeholder {
    color: #fff;
}

#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: rgb(71, 184, 243);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(71, 184, 243, 0.8);
}

::selection {
    color: #fff;
    background: rgb(71, 184, 243);
}

@media (max-width: 800px) {
    #middle {
        width: 90vw;
        padding: 0px 5vw;
    }

    #middle table {
        width: 80%;
    }

    #menu {
        display: inline-block;
    }

    #onlywide {
        display: none !important;
    }
}
