@import "fonts.css";
body {
    background-color: rgb(30, 35, 45);
}

main {
    width: 80%;
    margin: 20px auto;
    text-align: center;
    color: rgb(135, 150, 165);
    font-family: "Roboto Light"
}

#title {
    margin: 0px;
    font-size: 40px;
}

#title:hover {
    cursor: help;
}

#desc {
    margin-top: 5px;
    font-size: 22px;
    opacity: 0;
    transition: all 0.5s ease;
}

.item, #avatar {
    display: inline-block;
    background-size: cover;
    width: 100px;
    height: 100px;
    border-radius: 25px;
    margin: 5px;
    box-shadow: 0px 0px 5px 0px black;
}

.item {
    opacity: 0;
    transition: all 0.5s ease;
    background-repeat: no-repeat;
}

.item:hover {
    transition: all 0.2s ease;
    box-shadow: 0px 0px 30px 0px black;
}

#avatar {
    box-shadow: none;
    background-image: url("https://a.ppy.sh/4949888");
}

.back {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: rgb(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.back:hover {
    cursor: pointer;
}

.box {
    z-index: 100;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    background-color: rgba(151, 162, 175, 0.9);
    padding: 20px;
    border-radius: 5px;
    font-size: 18px;
    font-family: "Roboto Light"
}

::-webkit-scrollbar {
    background: none;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 100px;
}

#links>div {
    font-size: 35px;
    padding: 10px;
}

#bg {
    z-index: -10;
    line-height: 0;
    -webkit-column-count: 5;
    -webkit-column-gap: 0px;
    -moz-column-count: 5;
    -moz-column-gap: 0px;
    column-count: 5;
    column-gap: 0px;
    transform: scale(1.1);
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
}

#bg img {
    transition: all 0.3s ease;
    opacity: 0;
    width: 100% !important;
    height: auto !important;
}

@media (max-width: 1000px) {
    #bg {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media (max-width: 700px) {
    #bg {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 500px) {
    #bg {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}