html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ------------------------------------------------------ */

body {
    background-image: url(Assets/230117-Checkerboard-Rainbow-SM.webp);
    background-size: 200px;
    animation: animatedBackground 5s linear infinite;
}

@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -200px;
  }
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
}

#logo {
    margin-left: auto; margin-right: auto;
    width: 40%; height: 40%;
    animation: animatedLogo 5s ease-in-out infinite;
    margin-top: -3%;
}

@keyframes animatedLogo {
    0% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(-5deg);
    }
}

#settings {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3%;
}

#options {
    background-color: rgb(26, 24, 28);

    margin: 3%;
    margin-left: auto; margin-right: auto;

    width: 70%;
    padding: 2%;

    border-radius: 50px;

    color: white;
    font-family: playful;
}

input[type='text'] {
    border: none;
    border-radius: 30px;
    background-color: white;
    font-family: playful;
    color: rgb(26, 24, 28);
    width: 200px;
    height: 30px;
    padding: 1%;
}
input[type='checkbox']
{
    width: 20px;
    height: 20px;
}
input[type="submit"] {
    border: none;
    border-radius: 30px;
    background-color: white;
    font-family: playful;
    color: rgb(26, 24, 28);
    width: 200px;
    height: 90px;
    padding: 1%;
    font-size: 250%;
    margin-left: 39%; margin-right: 39%;
    align-self: center;
    transition: 0.25s ease;
}
input[type="submit"]:hover {
    transform: scale(1.05);
}

select, option {
    border: none;
    border-radius: 30px;
    background-color: white;
    font-family: playful;
    color: rgb(26, 24, 28);
    width: 150px;
    height: 40px;
    padding: 1%;
    line-height: 80%;
}

button, #paginatenum {
    background-color: rgb(26, 24, 28);
    color: white;
    font-family: playful;
    font-size: 200%;
    text-align: center;

    border: none;
    border-radius: 50px;

    padding: 1%;
    margin: 0.5%;

    transition: 0.25s ease;
}
button:hover, #paginatenum:hover {
    background-color: rgb(34, 31, 36);
    transform: translate(0, -15px);
}

#songs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.song {
    width: 900px;
    height: 175px;
    border: white solid 10px;
    border-radius: 30px;

    padding: 2%;
    margin: 1%;

    font-family: playful;
    color: white;
}
.song:nth-child(5n+1)
{
    background-color: #c401db;
}
.song:nth-child(5n+2)
{
    background-color: #fe1488;
}
.song:nth-child(5n+3)
{
    background-color: #75db00;
}
.song:nth-child(5n+4)
{
    background-color: #38e0cd;
}
.song:nth-child(5n+5)
{
    background-color: #8715ff;
}

.songname {
    font-size: 200%;
}
.songby {
    font-size: 75%;
    margin-bottom: 4%;
}
.songalbum, .songlength, .songfandom {
    margin-top: 1%; margin-bottom: 1%;
    font-size: 110%;
}



@font-face {
    font-family: playful;
    src: url('YangBagus-DYMX9.ttf');
}