@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
    color: #fff;
}

@media screen and (max-width: 1000px)
{
    
    a
    {
        text-decoration: none;
        transition: 0.2s;
    }

    a:hover
    {
        color: #7f9dc9 !important;
    }

    #particles-js
    {
        background-color: #000;
        background-image: url("");
        background-size: cover;
        background-repeat: repeat;
        background-position: 50% 50%;
        width: 100%;
        height: 100vh;
    }
    body
    {
        overflow: auto;
    }
    main
    {
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        width: 100% !important;
        padding: 15px;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.2);
        width: 100%;
    }

    main h2
    {
        font-size: 20px;
        margin-bottom: 15px;
    }

    main #logo, main #logo img
    {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    main h1
    {
        font-size: 40px;
        margin-bottom: 15px;
        color: rgb(255, 255, 255);
    }


    main div#container.flex
    {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
    }

    main div#container.flex .element
    {
        width: 100%;
        min-height: 50px;
        margin: 10px;
        padding: 10px;
        border-radius: 10px;
        text-align: center;
        font-size: 20px;
        cursor: pointer;
        transition: 0.2s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    main div#container.flex .element:hover
    {
        background-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 45px rgba(255, 255, 255, 0.1);
    }

}

@media screen and (min-width: 1000px)
{
    body
    {
        background-color: #020202;
        overflow: hidden;
        font-size: larger;
    }

    a
    {
        text-decoration: none;
        transition: 0.2s;
    }

    a:hover
    {
        color: #7f9dc9 !important;
    }

    #particles-js
    {

        background-color: #000;
        background-image: url("");
        background-size: cover;
        background-repeat: repeat;
        background-position: 50% 50%;
        width: 100%;
        height: 100vh;
    }

    main
    {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        background-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 45px rgba(255, 255, 255, 0.1);
        padding: 5px;
        border-radius: 5px;
        text-shadow: 0 0 5px black;
        min-width: 80%;
        max-width: 85%;
    }

    main h2
    {
        font-size: 20px;
        margin-bottom: 15px;
    }

    main #logo, main #logo img
    {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    main h1
    {
        font-size: 40px;
        margin-bottom: 15px;
        color: rgb(255, 255, 255);
    }

    main div#container.flex
    {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    main div#container.flex .element
    {
        width: 45%;
        min-height: 100px;
        margin: 10px;
        padding: 10px;
        border-radius: 10px;
        text-align: center;
        font-size: 20px;
        cursor: pointer;
        transition: 0.2s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    main div#container.flex .element:hover
    {
        background-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 45px rgba(255, 255, 255, 0.1);
    }
}


