::-webkit-scrollbar {
    display: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
}

body {
    min-height: 100vh;
    background: #27272c;
}

#neonbutton {
    position: relative;
    background: #444;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    letter-spacing: 0.1rem;
    font-size: 1rem;
    padding: 1rem 3rem;
    transition: 0.2s;
}

#neonbutton:hover {
    letter-spacing: 0.2rem;
    padding: 1.1rem 3.1rem;
    background: var(--clr);
    color: var(--clr);
    /* box-shadow: 0 0 35px var(--clr); */
    animation: box 3s infinite;
}

#neonbutton::before {
    content: "";
    position: absolute;
    inset: 2px;
    background: #272822;
}

#neonbutton span {
    position: relative;
    z-index: 1;
}

#neonbutton i {
    position: absolute;
    inset: 0;
    display: block;
}

#neonbutton i::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    left: 80%;
    top: -2px;
    border: 2px solid var(--clr);
    background: #272822;
    transition: 0.2s;
}

#neonbutton:hover i::before {
    width: 15px;
    left: 20%;
    animation: move 3s infinite;
}

#neonbutton i::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    left: 20%;
    bottom: -2px;
    border: 2px solid var(--clr);
    background: #272822;
    transition: 0.2s;
}

#neonbutton:hover i::after {
    width: 15px;
    left: 80%;
    animation: move 3s infinite;
}

@keyframes move {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes box {
    0% {
        box-shadow: #27272c;
    }

    50% {
        box-shadow: 0 0 25px var(--clr);
    }

    100% {
        box-shadow: #27272c;
    }
}

#top {
    height: 10vh;
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 100px;
}

#logo {
    max-width: inherit;
    max-height: inherit;
    height: inherit;
    width: inherit;
    object-fit: cover;
    clip-path: circle();
}

#top_red {
    display: flex;
    flex-direction: row;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
}

.dropdown-content * {
    padding-bottom: 10px;
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

#bot {
    overflow-y: scroll;
    height: 90vh;
}

#bot * {
    font-family: Arial;
}

#bot ol * {
    font-weight: 400;
    padding-left: 5vw;
    padding-bottom: 1vh;
}

#hlink {
    padding-left: 1vw;
    color: #0FF0FC;
}

#CLB_name {
    padding-top: 3vh;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: xx-large;
    color: #0FF0FC;
}

#Member {
    color: cyan;
    font-size: x-large;
}

#Member * {
    font-family: "Raleway";
}

#Member_contents {
    display: flex;
    flex-direction: row;
}

#Portfolio {
    min-width: 50vw;
}

#Portfolio * {
    padding-top: 10px;
}

#Name_tag {
    display: flex;
    align-items: center;
    font-size: xx-large;
}

#Member_pro_img {
    min-width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Member_but {
    min-width: 98vw;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #424242;
    border-radius: 100vw;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#Member_but:hover {
    background-color: gray;
}
