@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: url("../images/background_dirt.jpg");
}

h1 {
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h2 {
    font-size: 40px;
}

.body {

    height: 90vh;
    width: 100%;       
        section {
            background: url("../images/background.jpg");
            height: 90dvh;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            background-attachment: fixed;
        }
}
nav {
    position: sticky;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    height: auto;
    top: 0;
    z-index: 1000;
}
.nav {
    display: flex;
    list-style-type: none;
    height: 90px;
    align-items: center;
    justify-content: center;

    > li {
        margin: 20px;

        > a {
            color: #fff;
            text-decoration: none;
            font-size: 21px;
            font-weight: 600;
        }
    }
    .lightning a {
        background: #ff1313;
        padding: 10px 20px;
        width: 250px;
        border-radius: 5px;
    }
    .lightning a:hover {
        background: none;
        transition: 300ms;
    }
    a:hover {
        color: #d6d6d6;
        transition: 300ms;
    }
}

.join {
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vote {
    display: flex;
    width: 100%;
    max-width: 1600px;

    h2, ul {
        color: #fff;
        margin-left: 30px;
    }
    ul {
        font-size: 20px;
        margin-left: 60px;
    }

    .sites {
            width: 40%;
            max-width: 500px;
            text-align: center;
            list-style-type: none;
            border-radius: 20px;
            overflow: hidden;

            a {
                display: block;
                color: #fff;
                padding: 30px;
                text-decoration: none;
                text-transform: uppercase;
                font-weight: 700;
                font-size: 30px;
            }

            #vote1 {
                background: #ff8700;
            }
            
            #vote2 {
                background: #0e6fc3;
            }

            #vote3 {
                background: #249a2c;
            }

            #vote4 {
                background: #485fc7;
            }

            #vote5 {
                background: #cecaca;
            }

            #vote1:hover, #vote2:hover, #vote3:hover, #vote4:hover, #vote5:hover {
                background: none;
                transition: background 300ms;
                
                a {
                    color: #d6d6d6;
                    transition: color 300ms;
                }
            }
        }
    }

.team, .partners {
    text-align: center;
    width: 100%;
    max-width: 1600px;
    color: #fff;

    img {
        border-radius: 50%;
        width: 12rem;
        height: auto;
    }

    h1 {
        padding: 50px;
    }

    > div {
        display: flex;
        flex-wrap: wrap;
        font-size: 20px;
        font-weight: 600;
    }

    #partner_1 {
        font-style: italic;
        font-weight: 200;
        font-family: "Poppins", sans-serif;
    }
}

.social {
    display: flex;
    width: 100%;
    max-width: 1600px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 200px;

    img {
        height: 4.2rem;
    }

    a {
        padding: 32px;
        border-radius: 20px;
        filter: grayscale(100%);
    }

    a:hover {
        filter: grayscale(0%);
        transition: filter 300ms, background 300ms;
    }
    #discord:hover {
        background: #5865F2;
    }

    #youtube:hover {
        background: #fff;
    }
}

footer {
    width: 100%;
    max-width: 1600px;
    color: #fff;
    a {
        color: #fff;
        text-decoration: none;
    }
    
    .footer1 {
        display: flex;
        text-align: center;

        ul li {
            list-style-type: none;
            line-height: 24px;
        }
    }

    img {
        height: 7.2rem;
        width: auto;
    }

    h1 {
        font-size: 2.5rem;
    }

    #eula {
        float: left;
    }

    #privacy {
        float: right;
    }
}



.coding {
    filter: grayscale(100%);
}

.coding:hover {
    filter: grayscale(0%);
    transition: filter 300ms;
}