*{
    padding: 0;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html{
    background: url("images/1jcel81di6y-carl-newton.jpg") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#infoBubble{
    width: 25px;
    height: 25px;
    position: absolute;
    top:5%;
    left: 2%;
    bottom: 0;
    right: 0;
    
    border: 3px solid white;
    border-radius: 50%;
    text-align: center;
}

#infoBubble p {
    color: white;
    font-size: 20px;
}

#infoBox{
    opacity: 0;
    display: none;
    transition: all 1s;
    
    width: 300px;
    height: 47px;
    position: absolute;
    top: 8%;
    left: 5%;
    right: 0;
    bottom: 0;
    
    border: 1px solid white;
    text-align: center;
}

#infoBox p {
    color: white;
    font-size: 16px;
}

.welcome{
    position: absolute;
    top: 20%;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.welcome h1{
    font-size: 40px;
    text-align: center;
    color: lawngreen;
}

.welcome h2{
    font-size: 25px;
    text-align: center;
    color: limegreen;
}

a{
    color: inherit;
    text-decoration: none;
}

.keystrokes{
    width: 1100px;
    height: 130px;
    position: absolute;
    
    top: 55%;
    bottom: 0;
    right: 0;
    left: 0;
    
    margin: auto;
}

.soundKey{
    display: inline-block;
    transition: all 0.1s;
    width: 50px;
    height: 50px;
    padding: 20px;
    margin: 10px;
    border: 2px grey solid;
    background: rgba(0,0,0,0.7);
    
    text-align: center;
}

.music{
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    
    border: 2px darkorange solid;
}

.soundKey p{
    font-size: 30px;
    color: ghostwhite;
}

.soundKey .soundType{
    font-size: 15px;
    color: lawngreen;
}

strong{
    font-weight: bold;
}