@import url("/assets/font/gtstandard/load.css");

* {
    font-family: "GT Standard", sans-serif;
    font-style: normal;
    box-sizing: border-box;
    font-variation-settings: "slnt" 0;
}

body {
    background-color: black;
    margin: 0;
    color: rgba(244, 244, 244, 1);
}

a:link {
    color: var(--color-red);
}

a:visited {
    color: var(--color-red-dark);
}

a:hover {
    color: rgb(255, 105, 105);
}

a:link,
a:visited,
a:hover {
    transition: var(--transition);
}

em {
    font-style: italic;
}

.topbar {
    display: grid;
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    gap: 24px;
    height: 48px;
    padding-block: 8px;
    padding-inline: 24px;
    background-color: rgba(14, 16, 19, 1);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.topbar p {
    font-size: 16px;
    line-height: 0px;
}

.menubutton {
    padding: 0;
    background-color: transparent;
    border: 0;
    width: 32px;
    height: 32px;
    stroke:#ffffff;
    transition: 0.2s;
}

.menubutton:hover {
    stroke:#9a0c0c;
    cursor: pointer;
    transition: 0.2s
}

.main {
    position: relative;
    margin: auto;
    gap: 12px;
    padding: 24px;
    padding-top: 70px;
    max-width: 1000px;
}

.player {
    margin-bottom: 12px;
    border-radius: 12px;
}

.info {
    background-color: rgba(14, 16, 19, 1);
    border-radius: 8px;
    padding: 24px;
    max-width: 1000px;
    min-width: 240px;
}

.info h1 {
    font-size: 24px;
}

.info p {
    font-size: 16px;
}

.info img {
    width: 16px;
}
