@font-face {
    font-family: Title;
    src: url("../assets/fonts/alagard.ttf") format("truetype");
}

@font-face {
    font-family: SubTitle;
    src: url('../assets/fonts/Alkhemikal.ttf') format('truetype');
}

body {
    font-family: Arial, sans-serif;
    background: rgba(102, 0, 255, 1);
    margin: 0px;
    padding: 0px;
}

header {
    background-color: #99ff99;
    color: black;
    padding: 20px;
    text-align: center;
}

.title {
    font-family: Title;
    font-size: 48px;
    text-align: center;
}

.subtitle {
    font-family: SubTitle;
    font-size: 24px;
    text-align: center;
}

.main-gradient {
    background: linear-gradient(to bottom, rgba(153, 255, 153, 1) 0%, rgba(102, 0, 255, 1) 100%);
}

.table-image {
    width: 32px;
    height: 32px;
}

.steam-profile {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.lineHeader {
    height: 5px;
    background-color: blueviolet;
    color: transparent;
}

.main {
    height: auto;
    display: flex;
    justify-content: space-between;
}

.main .left {
    width: 20%;
    float: left;
    margin-left: 20px;
    margin-right: 20px;
}

.main .center {
    width: 60%;
}

.main .right {
    width: 20%;
    float: right;
    margin-left: 20px;
    margin-right: 20px;
}

.v-line {
    height: 100%;
    width: 10px;
    background-color: black;
    margin: 0 auto;
    position: relative;
}

.v-line::after {
    content: "";
    left: 50%;
    width: 5px;
    height: 100%;
    background-color: white;
    position: absolute;
    transform: translateX(-50%);
}

.toL {
    float: left;
}

.toR {
    float: right;
}