@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
    box-sizing: content-box;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    list-style-type: none;
    font-family: Poppins;
}

body {
    counter-reset: heading;
    margin-top: 10px;
    text-align: center;
}

div a {
    background-color: #0f0f0f;
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    font-weight: bold;
    border-radius: 10px;
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 50px;
}

.rightfloat {
    float: right;
    border-right: none;
}

.link a:hover {
    background-color: #9c9797;
    color: #0f0f0f;
}

#main_container {
    width: 90%!important;
    height: auto!important;
    background-color: #0f0f0f;
    margin: 0 auto;
    box-shadow: 0px 0px 10px 1px white;
    border-radius: 8px;
    padding: 20px 24px;
    overflow: auto;
    color: white;
    margin-top: 30px;
    margin-bottom: 50px;
}

#profile_picture {
    border-radius: 50%;
    animation: profile_border 3s linear infinite;
}

#username {
    background: linear-gradient(90deg, #f36100 20%, #f36100 40%, #d40606 60%, #f30000 80%);
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-animation: shine 2s linear infinite;
    animation: shine 2s linear infinite;
    font-size: 68px;
    margin: 0px;
}

#main_container p, #main_container h2, #main_container ul {
    text-align: left;
    list-style: disc;
}

#main_container h2 {
    color: antiquewhite;
    font-size: 45px;
    width: 100%;
    float: left;
    text-align: left;
    margin: 10px 0px 20px 0px;
    border-bottom: 3px solid #3d3d3d;
}

h2::before {
    counter-increment: heading;
    content: counter(heading) ". ";
}

#main_container h3 {
    text-align: left;
    font-size: 25px;
}

p {
    color: white;
    text-align: left;
    font-size: 20px;
}

.center h4 {
    font-size: 22px;
}

.list {
    list-style-type: circle;
    padding: 10px 15px;
    counter-reset: list_item;
}

.list li::before {
    counter-increment: list_item;
    content: counter(list_item) ". ";
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 18px;
}

::-webkit-scrollbar-thumb {
    border-radius: 18px;
    background: #3d3d3d;
}

._logo_ {
    width: 23px;
    height: 23px;
    border-radius: 50%;
}

p.link_ a {
    background: linear-gradient(90deg, #068fff 20%, #068fff 40%, #8600f3 60%, #a600f3 80%);
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    text-decoration: none;
    font-size: 25px;
}

p.link_ a:hover {
    animation: shine 2s linear infinite;
}

.card_container:hover img {
    animation: card 1s forwards;
}

* {
    background-color: #0f0f0f;
}

.center {
    text-align: center;
}

@keyframes shine {
    to {
        background-position: 200%
    }
}

@keyframes profile_border {
    from {
        box-shadow: 0 0 1px 0px wheat;
    }
    to {
        box-shadow: 0 0 12px 3px white;
    }
}

@keyframes card {
    from {
        box-sizing: none;
        transform: translateY(0);
    }
    to {
        box-shadow: 0 0 15px 5px #676869;
        transform: translateY(-5px);
    }
}

@media only screen and (max-width: 800px) {
    .card_container {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    div a {
        float: left;
        width: 100%;
        margin-bottom: 0;
    }
    div a.rightfloat {
        float: left;
    }
    .link {
        display: flex;
        margin: 0 auto;
        width: 95%;
        background-color: #0f0f0f;
    }
    #main_container {
        width: 80%!important;
        overflow-x: hidden;
        text-align: center;
        margin-bottom: 30px;
    }
    .card_container, .card_container img {
        width: 100%!important;
        height: auto;
        margin-bottom: 10px;
    }
    .card_container {
        margin: 0 auto;
        padding: 0;
    }
}

@media only screen and (max-width: 500px) {
    #main_container {
        width: 70%!important;
    }
    #profile_picture {
        width: 200px;
        height: 200px;
    }
    #main_container h2 {
        font-size: 35px;
    }
}