@font-face {
    font-family: 'United Colony Gradient';
    src: url('fonts/UnitedColonyGradientItalic.woff2') format('woff2'),
        url('fonts/UnitedColonyGradientItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Bauhaus Bernard 1926';
    src: url('fonts/BauhausBernard1926Bold.woff2') format('woff2'),
        url('fonts/BauhausBernard1926Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
body {
    background-image: url("images/stars.jpg");
    font-family: monospace;
    color: black;
}
#container {
    margin: auto;
    width: 700px;
    height: 180px;
    overflow: hidden;
    white-space: nowrap;
    border: 5px silver solid;
    border-radius: 10px;
    background: linear-gradient(to top, rgb(85, 88, 247) 0%, rgb(37, 39, 199) 51%, rgb(5, 8, 185) 100%);
}
#container .collection {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: fit-content;
    white-space: nowrap;
    animation: loop 25s linear infinite;
}
@keyframes loop {
    0% {transform: translateX(0%);}
    100% {transform: translateX(-75%);}
}
.games {
    display: flex;
    align-items: center;
    gap: 0 0.2rem;
    padding: 0.7rem 1rem;
    margin: 0rem 1rem;
    white-space: nowrap;
}
.contents {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 15px;
    margin-top: 15px;
}
#systems {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 190px;
    height: 600px;
    padding: 0px 15px 15px;
    border: 5px solid silver;
    border-radius: 15px;
    background: linear-gradient(to bottom, rgb(85, 88, 247) 0%, rgb(37, 39, 199) 51%, rgb(5, 8, 185) 100%);
    font-family: 'Bauhaus Bernard 1926';
    font-size: 220%;
    text-align: center;
}
#dd {
    display: block;
    margin: auto;
    margin-top: 8px;
}
#gleep {
    float: right;
    margin-top: 20px;
    margin-left: 8px;
}
#favorites {
    width: 500px;
    height: 600px;
    padding: 0px 15px 15px;
    border: 5px solid silver;
    border-radius: 15px;
    background: linear-gradient(to bottom, rgb(85, 88, 247) 0%, rgb(37, 39, 199) 51%, rgb(5, 8, 185) 100%);
    font-size: 110%;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: black transparent;
}
#title {
    font-family: 'Bauhaus Bernard 1926';
    font-size: 210%;
    margin-top: 15px;
}
#log {
    width: 190px;
    height: 600px;
    padding: 0px 15px 15px;
    border: 5px solid silver;
    border-radius: 15px;
    background: linear-gradient(to bottom, rgb(85, 88, 247) 0%, rgb(37, 39, 199) 51%, rgb(5, 8, 185) 100%);
    font-size: 110%;
}
#link {
    text-align: center;
}
#kuja {
    display: block;
    margin: auto;
}
#ship {
    display: block;
    margin: auto;
    margin-top: 15px;
}