body {
    background-color: rgb(17, 17, 17);
    color: white;
    margin: 0px 0px 0px;
    user-select: none;
    font-family: "Inter", sans-serif;
}

.border__title {
    border: 1px solid rgb(79, 23, 131);
    background: linear-gradient(to bottom, rgb(115, 43, 209), rgb(173, 110, 255));

    border-bottom: 4px solid rgb(204, 164, 255);

    background-color: blueviolet;
    color: white;
    width: 99,9%;

}

.border__title__second {
    background-color: rgb(115, 43, 209);
    background: linear-gradient(rgb(141, 68, 236), rgb(115, 43, 209));

    border: 5px solid rgb(104, 40, 189);

    color: white;
    height: 160px;
    width: 64%;
    border-radius: 16px;
}

.border {
    background-color: rgb(31, 31, 31) ;
    background: linear-gradient(rgb(40, 40, 40), rgb(31, 31, 31));

    border: 5px solid rgb(49, 49, 49);

    padding: 90px;
    border-radius: 32px;
    width: 30%;
    margin: 50px;
}

.border__first {
    background-color: rgb(115, 43, 209);
    background: linear-gradient(rgb(141, 68, 236), rgb(115, 43, 209));

    border: 5px solid rgb(104, 40, 189);

    padding: 90px;
    border-radius: 32px;
    width: 30%;
    margin: 50px;
}

.button {
    color: rgb(207, 155, 255);

    border: 2px solid rgb(179, 120, 255);
    font-size: 20px;
    padding: 12px 32px;
    top: 20px;

    border-radius: 16px;
    position: relative;
    transition: border 0.2s, background-color 0.2s, color 0.2s;
    text-decoration: none;
}

.button:hover {
    transition: border 0.2s, background-color 0.2s, color 0.2s;
    border: 2px solid rgb(211, 178, 255);
    background-color: rgb(147, 64, 255);
    color: white;
}

.copyright {
    color: gray;
    padding: 70px 0px 0px;
    font-size: 12px;
}

.yellow_text {
    background-image: linear-gradient(rgb(255, 251, 20), rgb(255, 153, 0));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline;
}

hr.hr_color {
    border: none; /* Removes the default border */
    height: 2px; /* Sets the thickness of the line */
    background-color: rgb(61, 61, 61); /* Sets the color */
}