/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');*/

html{
    text-wrap: pretty;
    font-family: "Montserrat" !important;
    background-color: #000000;
}

p{
    font-family: "Montserrat";
}

h1{
    font-family: "Montserrat";
}

.style-edit{
    font-family: "Montserrat";
}

body{
    background-image: linear-gradient(45deg, #000000 75%, #6300c0, #30EAFF);
}
.login-btn{
    background-image: linear-gradient(to left, #30EAFF, #8300C0);
    border: 1px #CCFF3F;
    position: relative;
}

.login-btn:hover{
    color: #CCFF3F;
}

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.login-btn:hover:after, .login-btn:hover:before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), transparent 70%, #269937, #CCFF3F);
    top: 50%;
    left: 50%;
    z-index: -1;
    translate: -50% -50%;
    height: 2.5rem;
    width: 8.3rem;
    border-radius: 2rem;
    animation: 3s spin linear infinite;
}

.login-btn::before{
    filter: blur(1.5rem);
    opacity: 0.5;
}

@keyframes spin{
    0%{
        --angle: 0deg;
    }
    100%{
        --angle: 360deg;
    }
}

.btn-m{
    width: 8rem;
    border-radius: 2rem;
    color: white;
    font-weight: 500;
}

.nav-left{
    margin-left: 3rem;
}

.nav-right{
    margin-right: 3rem;
}

.wrapper{
    display: flex;
    justify-self: end;
    align-items: center;
    margin-left: 2rem;
}

.nav-item .active{
    color: #269937;

}

.nav-link {
    color: white;
}

.select-bar{
    width: 0%;
    justify-self: center;
    transition: width 1s;
}

.nav-item .nav-link:hover{
    color: #30EAFF;
}

.nav-item .nav-link:hover + .select-bar{
    width: 80%;
    border: #30EAFF 2px solid;
}

.activebar{
    width: 80%;
    border: #269937 2px solid;
    justify-self: center;
}


.sub{
    margin-top: 1rem;
}

.navcont{
    background-color: black;
}

.foot{
    background-color: black;
    position: relative;
    z-index: 0;
}

.credit{
    all: unset;
    opacity: 15%;
}

.mob-nav-men{
    width: 100%;
    margin-top: 5rem;
    padding: 1rem;
    padding-top: 3rem;
    display: none;
    justify-content: center;
    position: fixed;
    background-color: #000000;
    z-index: 3;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 1.5rem;
}

.mob-nav{
    list-style: none;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mob-men{
    padding: 1rem;
}
.mob-men:nth-child(even){
    background-image: linear-gradient(to left, #30EAFF, #8300C0);
    width: 100%;
    text-align: center;
}

.mob-men a{
    text-decoration: unset;
    color: white;
}

.men-container{
    align-self: flex-end;
}

.mob-men-btn{
    all: unset;
    margin-left: 2rem;
    display: none;
}

.mob-men-btn:active{
    background-color: #8300C0;
}

#error{
    color: rgb(136, 24, 24);
}

#success{
    color: #CCFF3F;
}

.dropdown-item:hover{
    background-color: #CCFF3F;
    color: #000000;
}

.seen{
    display: none;
}

@media only screen and (max-width: 1325px) {
    .header-nav, .login-btn{
        display: none;
    }
    .mob-men-btn{
        display: block;
    }
}

@media only screen and (max-width: 850px) {
    .seen{
        display: none;
    }
}

@media only screen and (max-width: 650px) {
    .seen{
        display: none;
    }
    .logo-img{
        width: 125px;
        height: 32px;
    }
}

