body{
    height: 5000px;

    background-color: rgb(30, 30, 28);
    font-family: "Albert Sans", sans-serif;
}
h1, h2, h3, h4, h5, h6, p{
    color: white;
}

.intro{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 45vh;

    opacity: 0;
}

.title{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 45vh;
}
.title_text{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title img{
    box-sizing: border-box;
    border-radius: 50px;
    width: 300px;
    height: auto;

    margin-right: 50px;
}

.links{
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.links img, svg{
    height: 50px;
    width: auto;
    transition: transform 0.2s;
}
.links img:hover{
    transform: scale(1.3);
}
.links svg{
    transition: transform 0.2s;
}
.links svg:hover{
    transform: scale(1.3);
}

.tech_stack{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
}
.tech_icons{
    display: flex;

    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.tech_icons br{
    display: block;
    width: 100%;
    content: "";
}
.tech_icons img{
    height: 50px;
    width: auto;
}

.projects{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.project{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.project img{
    width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 5px 10px 10px black;

    border: 2px;
    border-color: rgb(71, 70, 66);
    border-style: solid;
}
.project h3{
    width: 600px;
    text-align: center;
}

.github_stats{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#public_repos{
    color: rgb(124, 187, 124);
    font-size: 40px;
    text-shadow: 0px 0px 10px rgb(0, 0, 0);
    transition: text-shadow 0.3s ease-in-out;
    cursor: pointer;
}
#public_repos:hover{
    text-shadow: 1px 1px 30px green;
}

#last_commit_repo{
    color: rgb(124, 187, 124);
    font-size: 30px;
    text-shadow: 0px 0px 10px rgb(0, 0, 0);
    transition: text-shadow 0.3s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}
#last_commit_repo:hover{
    text-shadow: 1px 1px 30px green;
}

.kofi_stuff{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
}
.kofi_card{
    width: 600px;
    height: auto;
    
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: rgba(60, 55, 47, 0.573);
    box-shadow: 10px 10px 30px rgba(164, 203, 169, 0.311);

    transition: transform 0.2s;
}
.kofi_card:hover{
    transform: scale(1.05);
}

@keyframes discount_rainbow{
    0% {color: rgb(255, 81, 81);}
    25% {color: greenyellow;}
    50% {color: rgb(85, 85, 255);}
    75% {color: rgb(216, 0, 216)}
    100% {color: rgb(171, 89, 89);}
}
#discount_text{
    animation: 5s infinite discount_rainbow;
    font-size: 50px;
}
#kofi_button{
    width: 200px;
    height: 50px;

    background-color: rgb(255, 90, 90);
    border-style: none;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(118, 118, 118, 0.581);
    transition: 0.3s;
    cursor: pointer;

    font-size: 20px;
    color: white;
}
#kofi_button:hover{
    box-shadow: 0px 10px 30px rgba(118, 118, 118, 0.581);;
}

#kofi_link_btn{
    width: 500px;
    height: auto;
}