* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@view-transition {
    navigation: auto;
}

body {
    font-family: Bahnschrift, 'DIN Alternate', 'Franklin Gothic Medium', 'Nimbus Sans Narrow', sans-serif-condensed, sans-serif;
    min-height: 100svh;
    gap: 1lh;
    color: #fff;
    text-align: center;
    background-color: color(srgb 0.2247 0.2962 0.4511);
    background: linear-gradient(290deg, hsla(205, 46%, 30%, 1), hsla(260, 29%, 36%, 1));
}

.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3lh;
    row-gap: 5lh;
    margin: 2lh;
    align-items: center;
}

a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    width: fit-content;
    align-self: center;
    margin: auto;
    aspect-ratio: auto;
}

a:hover {
    color: #000;
    transition: all .5s ease;
}

a img {
    width: 100%;
    max-width: 20lh;
    cursor: pointer;
    margin: unset;
    -webkit-user-select: none;
    user-select: none;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 1lh;
    gap: 3lh;
}

header {
    margin: 1.5lh 0 2lh;
    padding: 0 1lh;
    text-align: left;
}

#playButton {
    padding: .5lh 1lh;
    cursor: pointer;
    border: none;
    border-radius: .5lh;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1lh;
    font-family: inherit;
}

#playButton:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.playing {
    display: none;
}

.logo {
    width: 100%;
    max-width: 30lh;
    max-height: 50vh;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
}

#playing {
    color: #fff;
    font-size: 1lh;
    text-wrap: pretty;
    display: flex;
    flex-direction: column;
    gap: .5lh;
    align-items: center;
    text-align: center;
}

#trackTitle {
    font-size: 1.5lh;
    font-weight: 600;
}

.gtaiv {
    background-color: color(srgb 0.373 0.2662 0.3669);
    background: linear-gradient(to top, hsla(155, 19.63%, 22.29%, 1), hsla(302, 17%, 32%, 1));
}

.gtav {
    background-color: color(srgb 0.9571 0.5059 0.5275);
    background: linear-gradient(90deg, rgb(239, 113, 155) 0%, rgb(250, 147, 112) 100%);
}

@media (max-width: 900px) {

    .parent {
        grid-template-columns: repeat(1, 1fr);
    }

}
