@import url('https://fonts.googleapis.com/css2?family=Doto:wght,ROND@100..900,100&family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Doto:wght,ROND@100..900,100&family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Doto:wght,ROND@100..900,100&family=Micro+5&family=Orbitron:wght@400..900&family=Silkscreen:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Doto:wght,ROND@100..900,100&family=Micro+5&family=Orbitron:wght@400..900&family=Silkscreen:wght@400;700&display=swap');
@import url('style.css');

*{
    font-family: var(--defaultfont);
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

#container{
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.normal-div{
    display: inline-flex;
    padding: 1%;
    width: 50%;
    justify-content: center;
    flex-direction: row;
    background-color: var(--normalbgcolor);
    border-radius: 5px;

 >img{
    border-radius: 3px;
 }
}

span{
    transition: all 0.5s ease-in-out;
}

.preview-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--specialDiv);    
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    box-sizing: border-box;

    &.threed{
        display: flex;

            &:hover{
                transform: rotate3d(30, -30, 0, 20grad);
                box-shadow: 20px 15px 35px 0px #00000065;
                image-rendering: pixelated;
                text-rendering: geometricPrecision;

                    > span{
                        transform: translate3d(-5px, -1px, 10px);
                        text-shadow: 20px 15px 7px #00000065;
                    }
    
                    > button,a{
                        transition: all 0.5s ease-in-out;
                        transform: translate3d(-5px, -1px, 10px);
                        box-shadow: 20px 15px 10px 0px #00000065; 
            }
        }
    }

 > img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

 > span {
    color: var(--text);
    margin-bottom: 20px;
}

 .div-button {
    display: flex;
    background-color: var(--buttonsbg);
    color: var(--text);
    border: none;
    border-radius: 3px;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .3s ease-in-out;
    gap: 5%;
}

 .div-button:hover {
    background-color: var(--botcolor);
 }
}

#profile-login {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--markbuttons);
    color: var(--text);
    width: 50%;
    border-radius: 3px;
    padding: 10px 20px;
    gap: 1%;
    margin: 2% auto;
    flex-wrap: wrap;
    text-decoration: none;
    font-size: 20px;
    margin-top: 20px;
    align-self: center;
    transition: all 0.5s ease-in-out;

    &:hover{
        color: var(--actuallyColor);
        background-color: color-mix(in srgb, var(--markbuttons) 70%, var(--contraColor) 30%);
    }
}

#profile-div {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    flex-direction: column;
    margin: 2% auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 80%;
    background-color: var(--ideal);
    border: 2px solid var(--botcolor);
    padding: 2%;
    color: var(--whitecolor);
}

#profile-div img {
    border-radius: 50%;
    margin-bottom: 20px;
    width: 150px;
    height: 150px;
    box-shadow: 0px 0px 15px var(--botcolor);
    border: 2px solid var(--whitecolor);
}

#profile-data{
    text-align: center;
    justify-content: center;
    width: 100%;
}

#profile-data span {
    width: 100%;
    text-align: center;
    font-size: 180%;
    color: var(--botcolor);
}

#profile-data p {
    font-size: 1.2em;
    margin-bottom: 2%;
    color: var(--whitecolor);
}

#profile-data h3 {
    font-size: 1.5em;
    margin-bottom: 1%;
    color: var(--botcolor);
}

#profile-data ul {
    list-style: none;
    padding: 0;
}

#profile-data li {
    background-color: var(--srvlistbgcol);
    margin: 2% 1%;
    padding: 10px;
    border-radius: 5px;
    color: var(--whitecolor);
    border: 2px solid var(--botcolor);
}

.div-button{
    text-align: center;
    border-radius: 60px;
    align-items: center;
    font-size: 200%;
    width: 100%;
    margin: 1%;
    border-color: var(--botcolor);
    border-style: none;
    border-width: 1px;
    cursor: pointer;
    background-color: transparent;
    color: var(--botsecolor);
    font-weight: 900;
    letter-spacing: 5px;
}

@media (min-width: 100px) and (max-width: 550px) {
    #profile-div{
        width: 85%;
    }

    .preview-profile{
        width: 80%;
    }
} 

@media (min-width: 551px) and (max-width: 750px) {
    #profile-div{
        width: 60%;
    }
    
    .preview-profile{
        width: 75%;
    }
    
} 

@keyframes divborderanimation {
    0%{
        top: 0%;
        left: -10%;
    }
    25%{
        top: 10%;
        left: 0%;
    }
    50%{
        top: 0%;
        left: 10%;
    }
    75%{
        top: -10%;
        left: 0%;
    }
    100%{
        top: 0%;
        left: -10%;
    }
}