html {
    font-size: 100%;
    background-color: black;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav{
    background-color: black;
}
#profile {
    display: flex;
    justify-content: center;
    align-items: center;
    hEight: 90vh;
    width: 100%;
}
.tech-text {
    font-weight: 600;
}
.icon {
    font-size: 50px;
}
.icon-small {
    font-size: 40px;
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
}
.skill {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100px;
}
#comments {
    height: 200px;
}
.contact-left {
    width: 500px;
}
.projects-arrow {
    position: absolute;
    margin-top: 80vh;
}
.projects-arrow a {
    text-decoration: none;
    color: white;
}
.arrow {
    animation: jump 0.5s forwards ease-in-out infinite alternate;
}
#projects {
    width: 100%;
}
@keyframes jump {
    to {
        transform: translateY(5px);
    }
}
.wave {
    /* need display for css on span */
    display: inline-block;
    animation: wave 2.5s forwards ease-in-out infinite alternate;
}
@keyframes wave {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(14deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    30% {
        transform: rotate(14deg);
    }
    40% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.fa-github {
    transition: transform 0.3s ease-in-out;
}

.fa-github:hover {
    transform: rotate(360deg) scale(1.2);
}

.text-warning{
    width: 1000px;
    text-align: center;
    margin-top: 0; 
}
.btn{
    width: 250px;
    height: 50px;
    border-radius: 25px;
    background-color: greenyellow;
    color: rgb(37, 37, 37);
    font-size: 1.2rem;
    justify-content: center;
}
.btn:hover{
    font-weight: bold;
    border-radius: 25px;
    background-color: greenyellow;
    color: rgb(37, 37, 37);
    
}
#profile{
    background-color: black;
}
h2 span{
    color: greenyellow;
}
.nav_item:hover{
       color: greenyellow;
}
.navbar-brand:hover{
    color: greenyellow;
}
.nav-link:hover{
    color: greenyellow;
}
.trial{
    text-align: center;
}
.lead:hover{
    color: greenyellow;

}
.img-fluid{
    border-radius: 10px;
}
.col-md{
    text-align: center;
    margin-top: 0;

}
.new_text{
    margin-left: 50px;
}
.text-center{
    margin-bottom: 50px;
}
.titles{
    color: rgb(37, 37, 37);
    text-align: center;
    margin-bottom: 50px;
}
.invite{
    font-size: 1.3rem;
}
.contact-links .icon{
    color: rgb(37, 37, 37);
}
