@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
* {
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Raleway", sans-serif;
    background-color: #1f1f24;
    color: white;
    gap: calc(16px * 5);
}

.headercont {
    align-self: stretch;
    text-align: center;
    display: flex;
    justify-content: center;
    background-color: #26262c;
    padding: 10px 0;
}
.headercont h1{
    background-image: 
    linear-gradient(to right, #F74F86, #3765c2); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
    animation: move 1000s linear infinite;
}
@keyframes move {
    to {
        background-position: 26000px;
    }
}
.itemcont {
    padding: 0 calc(16px * 5);
    display: grid;
    grid-row-gap: 20px;
    grid-column-gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(330px, 330px));
    justify-content: center;
    align-items: center;
}

.item {
    position: relative;
    height: 330px;
    width: 330px;
    border-radius: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s;
    display: block;
}
.icon{
    height: inherit;
    width: inherit;
    font-size: 200px;
    position: absolute;
    text-align: center;
    line-height: 330px;
}
#themes .icon{
    color: #F74F86;
}
#plugins .icon{
    color:#3765c2;
}
#others .icon{
    color: #2a7446;
}
#themes{
    border: 2px solid #F74F86;
}
#plugins{
    border: 2px solid #3765c2;
}
#others{
    border: 2px solid #2a7446;
}
.item:hover {
    transform: scale(1.06);
}
#themes:hover{
    box-shadow: 0 0 8px 0 #F74F86;
}
#plugins:hover{
    box-shadow: 0 0 8px 0 #3765c2;
}
#others:hover{
    box-shadow: 0 0 8px 0 #2a7446;
    filter: grayscale(1);
    cursor: not-allowed;
}
.sub{
    text-align: center;
    margin-top: -50px;
    margin-bottom: -50px;
}
.aboutmecont{
    grid-row-gap: 10px;
    grid-column-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(70px, 100px));
}
.aboutmecont .item{
    height: 100px;
    width: 100px;
}
.aboutmecont .icon{
    height: inherit;
    width: inherit;
    font-size: 50px;
    position: absolute;
    text-align: center;
    line-height: 100px;
}
.aboutmecont h2{
    font-size: 14px;
    /* color: white; */
    /* font-family: 'Slabo 27px', serif; */
    transform: translateY(-30px);
}
.aboutmecont .item h2{
    background: transparent !important;
    padding-top: 10px !important;
    padding: 0;
    margin: 0;
    width: inherit;
    z-index: -1;
}
.aboutmecont .item:hover h2 {
    transform: translateY(-5px);
    opacity: 0.9;
    border-radius: 5px;
}
#github{
    border: 2px solid white;
    color: white;
}
#github:hover{box-shadow: 0px 0px 8px 0px black;}
#discord{
    border: 2px solid #627ee4;
    color: #627ee4;
}
#discord:hover{box-shadow: 0px 0px 8px 0px #627ee4;}
#lastfm{
    border: 2px solid #D51007;
    color: #D51007;
}
#lastfm:hover{box-shadow: 0px 0px 8px 0px #D51007;}
#spotify{
    border: 2px solid #1DB954;
    color: #1DB954;
}
#spotify:hover{box-shadow: 0px 0px 8px 0px #1DB954;}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb {
    background: #171718;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
    background: #26262c;
}

h2 {
    text-align: center;
    opacity: 0;
    /* display: flex; */
    transition: 0.5s;
    transform: translateY(-70px);
    position: absolute;
    margin: 10px;
    padding: 4px 10px;
}

.item:hover h2 {
    transform: translateY(0px);
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    width: 100%;
}
