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

body {
    background: #000;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}


#main {
    height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#player {
    width: 100%;
    height: auto;
    max-height: 100%;
}

button {
    outline:none;
	cursor:pointer;
	-webkit-transition:all .5s;
	transition:all .5s;
}

#buttons {
    height: 60px;
    padding: 10px;
}

#switch,
#next,
#new{
    background: #FFF;
    background: linear-gradient(to bottom, #FF2,#FB0);
    color: #AF2E08;
    font-size: 16px;
    font-weight: bold;
    height: 40px;
    padding: 0px 20px;
    margin: 0px 5px;
    border-radius: 20px;
}
#switch:hover,
#next:hover,
#new:hover {
    background: linear-gradient(to bottom,#FB0 ,#FF2);
}

#new a{
    text-decoration: none;
    color: #f519a7;
}