        .piano {
            display: flex;
            position: absolute;
            left: 250px;
            top: 250px;
        }

        .key {
            width: 50px;
            height: 150px;
            border: 1px solid black;
            margin: -4px;
            cursor: pointer;
        }

        .white {
            background-color: white;
        }

        .black {
            background-color: black;
            width: 35px;
            height: 90px;
            position: relative;
            top: -3px;
            margin: 0 -15px;
        }

        p {
            position: relative;
            left: 1px;
            top: 115px;
        }

        body {
            background-color: #630000;
        }

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

        .fonts {
            font-family: "Limelight", sans-serif;
            font-weight: 400;
            font-style: normal;
            color: white;
        }
