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

html {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
}

body {
    /* background: linear-gradient(110deg,#f93d66,); */
    /* background: rgb(203,38,38); */
    background: linear-gradient(80deg, rgb(33, 197, 0) 50%, rgba(33,0,255,1));
    margin: 50px;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: white;
}

.album {
    overflow: hidden;
}

.album_desc, .album_artist {
    cursor: default;
}

.album_artist {
    color: white;
    font-weight: normal;
    font-size: 20px;
    letter-spacing: 1px;
}

.album_desc {
    cursor: default;
    font-weight: 650;
    font-size: 17px;
}

.album_details h2 {
    cursor: default;
}

.album_details p {
    margin: 10px 0px;
    font-size: 20px;
}

.album_details h2:hover {
    cursor: pointer;
    color: red;
}

.album_artwork {
    width: 100%;
}

@media screen and (min-width: 300px) and (max-width: 800px) {
    .album_artwork {
        width: 100%;
        height: 100%;
    }

    .album_artist {
        color: white;
    }
}