@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');

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

html {
	width: 100%;
	height: 100%;
	overflow: auto;
}

body {
	width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	justify-content: space-around;
	align-items: space-between;
    gap: 40px;
    overflow: hidden;
}

h1, h2 {
    font-family: 'Jersey 10', sans-serif;
    font-weight: 300;
    font-size: 2.5em;
    font-style: normal;
    color:rgb(255, 255, 255);
}

#logo-radio {
    max-width: 30vh;
    border-radius: 15px;
    box-shadow: 3px 3px 5px #2a2a2a;
    margin: 10px;
    background-color: white;
    position: relative;
    left: 18%;
}

#box {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: clamp(400px, 100%);
    height: 100%;
}

#buttons {
    display: flex;
    justify-content: space-around;
    width: 400px;
    padding: 20px;
}

.control {
    margin-bottom: -10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    box-shadow: 3px 3px 5px #626262;
    background-color: #f3f3f3;
}

.control:hover {
    background-color: #ffffff;
    position: relative;
    bottom: 2px;
}

.label-control {
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: medium;
    margin: 0px 40px 0 40px;
    font-family: 'Jersey 10', sans-serif;
}

/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }
.material-icons.md-60 { font-size: 60px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(29, 29, 29, 0.921); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgb(206, 206, 206); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

#volumeRange {
    transform: rotate(-90deg); 
    height: 5px;
    width: 25vh; 
    appearance: none;
    background-color: rgb(158, 158, 158);
    border-radius: 3px;
    padding: 2px;
}

#volumeRange::-webkit-slider-thumb {
    appearance: none;
    display: block;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
}

#volumeRange::-moz-range-thumb {
    appearance: none;
    display: block;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
}