:root {
    --mainblue: #1A2CA3;
    --h-pink: #ff00dd;
    --h-yellow: #FFDE4E;
    --h-green: #00ff00;
}

@font-face {
    font-family: 'TT-CHIARO-B';
    src: url(../img/fonts/TT_CHIARO-B.ttf);
    font-weight: normal;
	font-style: normal; 
	font-display: swap;
}

body {
    background: radial-gradient(ellipse at bottom, var(--mainblue) 0%, rgba(29, 29, 89, 1) 25%, black 100%);
    width: 100vw;
    height: 100vh;
    font-family: 'TT-CHIARO-B', 'sans-serif';
    padding: 0;
    margin: 0;
}

.content {
    color: white;
    width: 1050px;
    margin: 0 auto;
}

.logo {
    display: block;
    margin: 0 auto 10px auto;
    height: 200px;
}

nav {
    align-items: center;
    background-color: black;
    border: 1px solid white;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

nav a {
    border-bottom: 2px solid var(--h-pink);
    color: white;
    font-size: 1.2rem;
    margin: 15px 5px;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--h-pink);
}

.main-content {
    background-color: black;
    border: 1px solid white;
    margin-top: 20px;
    min-height: 620px;
    max-height: 620px;
    overflow: auto scroll;
}

.main-content h3 {
    text-align: center;
    font-size: 1.5rem;
    font-family: 'MingLiu-ExtB';
    letter-spacing: 2px;
    margin-right: 30px;
}

.vg-entry {
    align-items: center;
    border: 1px solid white;
    display: flex;
    flex-direction: row;
    margin: 10px auto;
    width: 40%;
}

.vg-entry img {
    border: 1px solid white;
    margin: 5px;
    width: 15%;
}

#playing span {
    color: var(--h-green);
}

.description {
    margin: 10px;
}

.description span {
    color: var(--h-pink);
    font-size: 1.2rem;
}

.description p {
    margin: 5px 0;
}

.fixed-content {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    flex-direction: row;
    color: white;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.fixed-content img {
    width: 70px;
}

.album {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.left-sect, .right-sect {
    border: 1px solid white;
    margin: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    align-items: center;
    max-height: 350px;
}

.left-sect {
    min-width: 320px;
    max-width: 320px;
}

.left-sect span, .right-sect span {
    color: var(--h-pink);
}

.left-sect img {
    border: 1px solid white;
    width: 240px;
}

.left-sect p, .right-sect p {
    margin: 10px;
}

#flag {
    border: none;
    height: 10px;
    width: 15px;
}

.right-sect {
    width: 50%;
}

.right-sect div {
    border: 1px solid white;
    overflow: auto scroll;
    width: 90%;
    text-align: left;
    scrollbar-width: thin;
    scrollbar-color: var(--h-pink), black;
    margin-bottom: 22px;
}