
@import url('https://fonts.cdnfonts.com/css/cubano');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #101012;
}

main {
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    min-height: 90vh;
}

header {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    font-family: 'Poppins', sans-serif;
}

header > h1 {
    margin-left: 10px;
}

.member {
    display: flex;
    align-items: center;
    justify-content: center;

}

header > .member > img {
    width: 30px;
    height: 30px;
}

header > img {
    width: 40px;
    height: 40px;
}

button {
    font-family: 'Poppins', sans-serif;
    padding: 10px 100px;
    border-style: none;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 12px 12px 0px -3px rgba(0, 0, 0, 0.25);
    font-size: 20px;
    font-weight: 900;
    color: #1f1f1f;
    cursor: pointer;
}

button:hover {
    transition: 0.5s;
    padding-right: 120px;
    box-shadow: 12px 12px 0px -3px #1c9de7;
    
}

#discord {
    margin-right: 50px;
}

#twitter {
    margin-left: 50px;
}

.button {
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

.text {
    position: relative;
}

@keyframes animate {
    0%,100% {
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}

main > .text > h1 {
    font-size: 8em;
    position: absolute;
    transform: translate(-50%, -50%);
}

.text h1:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 1px #1c9de7;
}

.text h1:nth-child(2) {

    color: #1195e2;
    animation: animate 4s ease-in-out infinite ; 
}

li {
    color: white;
}

#flashlight {
    --Xpos: 50vw;
    --Ypos: 50vh;
}

#flashlight:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    background: radial-gradient(circle 7em at var(--Xpos) var(--Ypos), rgba(0, 0, 0, 0), rgba(0,0,0,1));
}

@media(max-width: 750px) {

    main > .text > h1 {
        font-size: 6em;
    }

    button {
        padding: 5px 50px;
    }

}

@media(max-width: 550px) {

    main > .text > h1 {
        font-size: 5em;
    }

    button {
        padding: 5px 40px;
        font-size: 15px;
    }

}

@media(max-width: 430px) {

    main > .text > h1 {
        font-size: 3em;
    }

    button {
        padding: 5px 20px;
        font-size: 10px;
    }

}






