body {
	font-family: source-sans-pro;
	background-color: #2d4059;
}

.pianobackground{
	height: 450px;
	width: 100%;

	overflow:visible;
	
}

.notefield {
	position: relative;
	top: 20px;
	border-radius: 5px;
	border: 1px solid #2C9AB7;
	padding: 5px;
	width: 970px;
	height: 110px;
	display: block;
    margin-left: auto;
    margin-right: auto;
	background-color: #222831;
	color: #fff;
	font-size: 1.3em;
	overflow:visible;
	box-shadow: 0 8px 5px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	resize: none;
  }


  .notestext{
	position: relative;
	width: 600px;
	top: 40px;
	color: #fff;
	overflow:visible;
	font-size: 1.5em;
	display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .noshrink{
	min-height: 400px;
}


.container2{
    /*display: flex;*/
    /*--width: 200px;*/
    height: 200px;
    width: 970px;
    background-color: #222831;
    /*border-top: 100px solid #222;
    border-bottom: 20px solid #222;
    border-left: 20px solid #222;
    border-right: 20px solid #222;*/
	border: 1px solid #2C9AB7;
    border-radius: 10px;
    position: relative;
    top: 60px;
    margin: 0 auto;
	filter: drop-shadow(10px 10px 10px black);
  }

  .piano {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 15px;
    left: 20px;
  }

  .bigspace{
	height: 50px;
	margin-bottom:100px;
}

.key {
    height: calc(var(--width) * 4);
    width: var(--width);
    
  }
  
  .white {
    --width: 30px;
    background-color: white;
    border: 1px solid #333;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-weight: 700;
    font-size: 1.5em;
    text-align: center;
    position: relative;
    cursor: pointer;

  }

  .white:hover {
    background-color: rgb(221, 220, 220);
	cursor:pointer; 
  }

  .white.active {
    background-color: #CCC;
	color: red;
  }
  .first.active {
    background-color: #000;
  }
  .w1{
	background-color: black;
  }


  .black {
    --width: 17px;
    background-color: black;
    margin-left: calc(var(--width) / -2);
    margin-right: calc(var(--width) / -2);
    z-index: 2;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-weight: 700;
    font-size: 1.2em;
    color: white;
    position: relative;
    cursor: pointer;
	box-shadow: 0 8px 5px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

  .black.active {
    background-color: rgb(196, 196, 196);
	color: red;
  }
  .black:hover {
    background-color: #333;

  }

  .bottom {
    /*border: 1px solid black;*/
    text-align: center;
    position: absolute;
    bottom: 5%;
    width: 100%;
    user-select: none;
  }

