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

:root{
    --black-color: #0c0c0c;
    --white-color: #f0f0f0;
    --gray-whited-color: #d1d1d1;

}

html, body{
    width: 100%;
    height: auto;

    display: flex;
    justify-content: center;

    font-family: 'Satoshi', sans-serif;
}

body{
    background-color: var(--black-color);
}

.initial-screen{
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;

    color: var(--gray-whited-color);
}

#loading{
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 1rem;
}

#loading .bars-loading{
    width: auto;
    height: 3rem;

    display: flex;
    flex-direction: row;
    align-items: flex-end;

    gap: 1rem;
}

.bars-loading .bar{
    width: 1.5rem;
    background-color: var(--gray-whited-color);
}

#bar1{
    height: 2.5rem;
    animation: movebar1 0.8s infinite;
}

#bar2{
    height: 3rem;
    animation: movebar2 1s infinite;

}

#bar3{
    height: 2rem;
    animation: movebar3 1.2s infinite;

}

@keyframes movebar1{
    0%{
        height: 2.5rem;
    }
    50%{
        height: 1.5rem;
    }
    100%{
        height: 2.5rem;
    }
}
@keyframes movebar2{
    0%{
        height: 3rem;
    }
    50%{
        height: 1.5rem;
    }
    100%{
        height: 3rem;
    }
}
@keyframes movebar3{
    0%{
        height: 2rem;
    }
    50%{
        height: 0.5rem;
    }
    100%{
        height: 2rem;
    }
}

.container{
    width: 60%;
    height: 100%;
}

.container h1{
    font-size: 42px;
    font-weight: bolder;

    color: var(--white-color);
}

.container p{
    color: var(--gray-whited-color);
}

.container .content{
    padding-top: 2rem;
}

.content .container-input{
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    
    padding-top: 3rem;
}

.container-input .input{
    display: flex;
    justify-content: center;
    align-items: center;
}

.input i{
    font-size: 18px;
    color: var(--white-color);

    position: relative;
    left: 1.5rem;
}

.container-input input[type="text"]{
    width: 60%;
    height: 3rem;

    position: relative;
    right: 10px;

    border-radius: 1rem;
    border: 1px solid var(--white-color);
    background-color: transparent;

    outline: none;

    background-color: #d1d1d11f;
    color: var(--white-color);

    font-family: 'Satoshi', sans-serif;
    font-size: 18px;

    padding-left: 3rem;
    transition: 0.3s;
}

.container-input input[type="text"]:hover{
    scale: 1.05;
    padding-left: 3.5rem;
}

.box-user{
    width: 100%;
    height: auto;

    display: flex;
    justify-content: center;
}

.box-user .box{
    width: 60%;
    height: 20rem;

    margin-top: 2rem;

    border-radius: 1rem;
    border: 1px solid var(--white-color);

    background-color: transparent;
    color: var(--white-color);
}

.box .user-photo img{
    width: 8rem;

    border: 1px solid var(--white-color);
    border-radius: 4rem;
}

.user-photo{
    text-align: center;
}

.user-photo h3 a{
    color: var(--white-color);
    text-decoration: none;
}

.user-photo h3 a:hover{
    text-decoration: underline;
}

.box .user-content{
    padding-top: 1.5rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    position: relative;
    animation: slidein 0.5s;
}

@keyframes slidein{
    from{
        opacity: 0;
        left: 3rem;
    }
    to {
        opacity: 1;
        left: 0;
    }
}

.user-content .container-location{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
}

.user-content .user-info{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.user-info .followers h3,
.user-info .repos h3{
    text-align: center;
}

.user-info .followers .number-box,
.user-info .repos .number-box{
    margin-top: 0.2rem;

    width: 7rem;
    height: 2rem;

    border-radius: 0.5rem;
    border: 1px solid var(--white-color);
    background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.user-info .followers .number-box:hover,
.user-info .repos .number-box:hover{
    background-color: var(--white-color);
}

.user-info .followers .number-box:hover > p,
.user-info .repos .number-box:hover > p{
    color: #0c0c0c;
}

.number-box p{
    font-weight: 600;
}